We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2189f6 commit 10ad605Copy full SHA for 10ad605
bootstrap
@@ -11,7 +11,7 @@ from argparse import ArgumentParser
11
from datetime import date
12
from enum import Enum
13
from pathlib import Path
14
-from typing import List, Union
+from typing import Union
15
16
parser = ArgumentParser(description="Prepares python project repository.")
17
parser.add_argument("--no-verify", action="store_true", help="Disable input verification.")
@@ -330,7 +330,7 @@ def main():
330
)
331
else:
332
# Delete cython-related files
333
- paths_to_delete: List[Union[str, Path]] = [
+ paths_to_delete: list[Union[str, Path]] = [
334
".github/workflows/build_wheels.yaml",
335
"build.py",
336
"pythontemplate/_c_src",
0 commit comments