Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.

Commit 2b1e66f

Browse files
authored
chore: fix syntax error in owlbot.py (#128)
Also, add missing import
1 parent 117216c commit 2b1e66f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

owlbot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import synthtool as s
1818
import synthtool.gcp as gcp
1919
import logging
20+
from synthtool.languages import python
2021

2122
logging.basicConfig(level=logging.DEBUG)
2223

@@ -40,13 +41,14 @@
4041
# Add templated files
4142
# ----------------------------------------------------------------------------
4243
templated_files = common.py_library(
43-
python.py_samples(skip_readmes=True)
4444
samples=False, # set to True only if there are samples
4545
microgenerator=True,
4646
cov_level=98,
4747
)
4848
s.move(templated_files, excludes=[".coveragerc"]) # microgenerator has a good .coveragerc file
4949

50+
python.py_samples(skip_readmes=True)
51+
5052
# Update the namespace in noxfile.py
5153
s.replace(
5254
"noxfile.py",

0 commit comments

Comments
 (0)