Skip to content

Commit 4471b86

Browse files
committed
Avoid a flake8 line length warning
1 parent e5f6231 commit 4471b86

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

{{cookiecutter.package_name}}/tests/test_examples.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ def run_in_venv(
4040
script_dir = os.path.join(REPO_DIR, os.path.dirname(filepath))
4141
filename = os.path.basename(filepath)
4242
args = shlex.split(
43-
f'/bin/bash -c "source {VENV_DIR}/bin/activate && python {filename}"'
43+
(
44+
f'/bin/bash -c "source {VENV_DIR}/bin/activate '
45+
f'&& python {filename}"'
46+
)
4447
)
4548

4649
env = {}

0 commit comments

Comments
 (0)