Skip to content

Commit 2f9fccc

Browse files
committed
STY: PEP8
1 parent d13131b commit 2f9fccc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/update_requirements.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env python3
2-
import sys
32
from copy import copy
43
from configparser import ConfigParser
54
from pathlib import Path
@@ -17,6 +16,7 @@
1716

1817
script_name = Path(__file__).relative_to(repo_root)
1918

19+
2020
def to_min(req):
2121
if req.specifier:
2222
req = copy(req)
@@ -25,6 +25,7 @@ def to_min(req):
2525
req.specifier = SpecifierSet(str(min_spec))
2626
return req
2727

28+
2829
lines = [f"# Auto-generated by {script_name}", ""]
2930

3031
# Write requirements

0 commit comments

Comments
 (0)