Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 84ffbd4

Browse files
authored
chore: fix syntax error in owlbot.py (#74)
1 parent 20b275c commit 84ffbd4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

owlbot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,16 @@
1818

1919
import synthtool as s
2020
from synthtool import gcp
21+
from synthtool.languages import python
2122

2223
common = gcp.CommonTemplates()
2324

2425
# ----------------------------------------------------------------------------
2526
# Add templated files
2627
# ----------------------------------------------------------------------------
2728
templated_files = common.py_library(microgenerator=True)
28-
python.py_samples(skip_readmes=True)
2929
s.move(templated_files, excludes=["docs/multiprocessing.rst"])
3030

31+
python.py_samples(skip_readmes=True)
32+
3133
s.shell.run(["nox", "-s", "blacken"], hide_output=False)

0 commit comments

Comments
 (0)