Skip to main content

Remember to run black

ID
049e541
date
2023-12-26 12:47:36+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
5f99b0d
message
Remember to run black
changed files
1 file, 2 additions, 2 deletions

Changed files

cog_helpers.py (1609) → cog_helpers.py (1610)

diff --git a/cog_helpers.py b/cog_helpers.py
index a87e3b2..a005ff0 100644
--- a/cog_helpers.py
+++ b/cog_helpers.py
@@ -27,7 +27,7 @@ Script = ScriptWithName | ScriptWithUsage
 
 
 def outl(s: str, indent: int = 0):
-    cog.outl(textwrap.indent(s, prefix=' ' * indent))
+    cog.outl(textwrap.indent(s, prefix=" " * indent))
 
 
 def create_description_table(
@@ -54,7 +54,7 @@ def create_description_table(
         outl("<dt>", indent=2)
         outl(
             f'<a href="https://github.com/{repo_name}/blob/{primary_branch}/{folder_name}/{name}">',
-            indent=4
+            indent=4,
         )
         outl(f"<code>{usage}</code>", indent=6)
         outl("</a>", indent=4)