We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 824dfcf commit fef7f8bCopy full SHA for fef7f8b
src/docker_python_nodejs/cli.py
@@ -55,7 +55,7 @@ def run_release(args: CLIArgs) -> None:
55
56
def main(args: CLIArgs) -> None:
57
if args.dry_run:
58
- logger.debug("Dry run, outputing only.")
+ logger.debug("Dry run, outputting only.")
59
60
if args.command == "dockerfile":
61
run_dockerfile(args)
src/docker_python_nodejs/nodejs_versions.py
@@ -14,7 +14,7 @@ class NodeRelease(TypedDict):
14
15
16
def fetch_node_releases() -> list[NodeRelease]:
17
- """Fetch offical node releases"""
+ """Fetch official node releases"""
18
url = "https://nodejs.org/dist/index.json"
19
res = requests.get(url, timeout=10.0)
20
res.raise_for_status()
0 commit comments