From 26c621f0fffe968a4e207c514e1400e0183edf97 Mon Sep 17 00:00:00 2001 From: David Carmichael Date: Thu, 8 Aug 2024 20:12:37 +0100 Subject: [PATCH] fix: remove comments --- src/flask_imp/_cli/filelib/blueprint.py | 2 -- src/flask_imp/_cli/filelib/models.py | 1 - src/flask_imp/_cli/filelib/resources.py | 1 - src/flask_imp/_cli/filelib/templates.py | 1 - 4 files changed, 5 deletions(-) diff --git a/src/flask_imp/_cli/filelib/blueprint.py b/src/flask_imp/_cli/filelib/blueprint.py index b4be0fde..bcbb118e 100644 --- a/src/flask_imp/_cli/filelib/blueprint.py +++ b/src/flask_imp/_cli/filelib/blueprint.py @@ -1,4 +1,3 @@ -import typing as t from pathlib import Path @@ -111,7 +110,6 @@ def blueprint_templates_includes_header_html( """ -# Format to: footer_html, main_html def blueprint_templates_includes_footer_html(footer_html: Path, main_html: Path) -> str: return f"""\
diff --git a/src/flask_imp/_cli/filelib/models.py b/src/flask_imp/_cli/filelib/models.py index f7579bc2..48fc77a9 100644 --- a/src/flask_imp/_cli/filelib/models.py +++ b/src/flask_imp/_cli/filelib/models.py @@ -1,4 +1,3 @@ -# Format to: None def models_example_user_table_py(app_name: str) -> str: return f"""\ from sqlalchemy import select, update, delete, insert diff --git a/src/flask_imp/_cli/filelib/resources.py b/src/flask_imp/_cli/filelib/resources.py index 9147c0ba..84b7ea3d 100644 --- a/src/flask_imp/_cli/filelib/resources.py +++ b/src/flask_imp/_cli/filelib/resources.py @@ -1,4 +1,3 @@ -# Format to: app_name def resources_cli_py() -> str: return """\ from flask import current_app as app diff --git a/src/flask_imp/_cli/filelib/templates.py b/src/flask_imp/_cli/filelib/templates.py index 769d7d76..1dba5ecc 100644 --- a/src/flask_imp/_cli/filelib/templates.py +++ b/src/flask_imp/_cli/filelib/templates.py @@ -1,4 +1,3 @@ -# Format to: head_tag, static_path, index_py, index_html, init_py def templates_minimal_index_html( head_tag: str, static_path: str, index_py: str, index_html: str, init_py: str ) -> str: