Ignore type checking as it's just for a POC

This commit is contained in:
sabaimran 2024-11-18 16:19:02 -08:00
parent 3806cce2e6
commit 866f5d027b
2 changed files with 46 additions and 48 deletions

View file

@ -9,7 +9,7 @@ class Migration(migrations.Migration):
("database", "0067_alter_agent_style_icon"),
]
operations = [
operations = [] # type: ignore
# migrations.AlterField(
# model_name="agent",
# name="output_modes",
@ -21,4 +21,3 @@ class Migration(migrations.Migration):
# size=None,
# ),
# ),
]

View file

@ -9,7 +9,7 @@ class Migration(migrations.Migration):
("database", "0069_webscraper_serverchatsettings_web_scraper"),
]
operations = [
operations = [] # type: ignore
# migrations.AlterField(
# model_name="agent",
# name="input_tools",
@ -43,4 +43,3 @@ class Migration(migrations.Migration):
# size=None,
# ),
# ),
]