Skip to content

Commit cf2eff0

Browse files
authored
chore(python): fix line breaks in template and use newer black version (#643)
* chore(python): fix line breaks in template * fix: also update black version
1 parent db4f15f commit cf2eff0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synthtool/gcp/templates/python_library/noxfile.py.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import shutil
2323
import nox
2424

2525

26-
BLACK_VERSION = "black==19.3b0"
26+
BLACK_VERSION = "black==19.10b0"
2727
BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
2828

2929
DEFAULT_PYTHON_VERSION="{{ default_python_version }}"
@@ -75,7 +75,7 @@ def default(session):
7575

7676
{%- if microgenerator %}
7777
session.install("asyncmock", "pytest-asyncio")
78-
{% endif -%}
78+
{% endif %}
7979
session.install("mock", "pytest", "pytest-cov")
8080
session.install("-e", "."){% for dependency in unit_test_dependencies %}
8181
session.install("-e", "{{dependency}}"){% endfor %}

0 commit comments

Comments
 (0)