Skip to content

Commit aa141dc

Browse files
Merge pull request #180 from scipp/fix-make-base
Update make base.
2 parents cac2bde + 0187c6f commit aa141dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

template/requirements/make_base.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import sys
22
from argparse import ArgumentParser
33
from pathlib import Path
4-
from typing import List
54

65
import tomli
76

@@ -20,7 +19,7 @@
2019
"""
2120

2221

23-
def write_dependencies(dependency_name: str, dependencies: List[str]) -> None:
22+
def write_dependencies(dependency_name: str, dependencies: list[str]) -> None:
2423
path = Path(f"{dependency_name}.in")
2524
if path.exists():
2625
sections = path.read_text().split(CUSTOM_AUTO_SEPARATOR)

0 commit comments

Comments
 (0)