Skip to content

Commit 92f533f

Browse files
committed
Fix docstring
1 parent f718fa1 commit 92f533f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements/runtime-deps.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Extracted from `setup.cfg` via `make sync-direct-runtime-deps`
1+
# Extracted from `pyproject.toml` via `make sync-direct-runtime-deps`
22

33
aiodns >= 3.2.0; sys_platform=='linux' or sys_platform=='darwin'
44
aiohappyeyeballs >= 2.3.0

requirements/sync-direct-runtime-deps.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
"""Sync direct runtime dependencies from setup.cfg to runtime-deps.in."""
2+
"""Sync direct runtime dependencies from pyproject.toml to runtime-deps.in."""
33

44
import sys
55
from pathlib import Path
@@ -17,6 +17,6 @@
1717
reqs = sorted(reqs, key=str.casefold)
1818

1919
with open(Path("requirements", "runtime-deps.in"), "w") as outfile:
20-
header = "# Extracted from `setup.cfg` via `make sync-direct-runtime-deps`\n\n"
20+
header = "# Extracted from `pyproject.toml` via `make sync-direct-runtime-deps`\n\n"
2121
outfile.write(header)
2222
outfile.write("\n".join(reqs) + "\n")

0 commit comments

Comments
 (0)