Fix some linting issues flagged by flake8
- ID
266084c- date
2023-12-26 12:49:05+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
049e541- message
Fix some linting issues flagged by flake8- changed files
1 file, 1 addition, 3 deletions
Changed files
cog_helpers.py (1610) → cog_helpers.py (1585)
diff --git a/cog_helpers.py b/cog_helpers.py
index a005ff0..e8e5bca 100644
--- a/cog_helpers.py
+++ b/cog_helpers.py
@@ -8,7 +8,7 @@ https://nedbatchelder.com/code/cog
"""
import textwrap
-from typing import Literal, TypedDict
+from typing import TypedDict
import cog
@@ -36,8 +36,6 @@ def create_description_table(
repo_name: str = "alexwlchan/scripts",
primary_branch: str = "main",
) -> None:
- indent = 0
-
outl("<dl>")
for i, s in enumerate(scripts, start=1):