Skip to content

Commit 2be430e

Browse files
committed
Fix typing for python 3.9
1 parent 13ee7e6 commit 2be430e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/project-template/nox_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TestSpecificNoxTasks:
1515
passes CI tests when a new project is created from it.
1616
"""
1717
@staticmethod
18-
def _command(poetry_path: str, task: str, add_ons: Union[list[str]|None]=None) -> list[str]:
18+
def _command(poetry_path: str, task: str, add_ons: Union[list[str], None]=None) -> list[str]:
1919
base = [poetry_path, "run", "--", "nox", "-s", task]
2020
if add_ons:
2121
base = base + ["--"] + add_ons

0 commit comments

Comments
 (0)