Skip to content

Commit 10ad605

Browse files
committed
pyupgrade bootstrap to py39.
1 parent c2189f6 commit 10ad605

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bootstrap

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ from argparse import ArgumentParser
1111
from datetime import date
1212
from enum import Enum
1313
from pathlib import Path
14-
from typing import List, Union
14+
from typing import Union
1515

1616
parser = ArgumentParser(description="Prepares python project repository.")
1717
parser.add_argument("--no-verify", action="store_true", help="Disable input verification.")
@@ -330,7 +330,7 @@ def main():
330330
)
331331
else:
332332
# Delete cython-related files
333-
paths_to_delete: List[Union[str, Path]] = [
333+
paths_to_delete: list[Union[str, Path]] = [
334334
".github/workflows/build_wheels.yaml",
335335
"build.py",
336336
"pythontemplate/_c_src",

0 commit comments

Comments
 (0)