disable clear old config keys, hotfix

This commit is contained in:
Simon 2026-02-28 18:42:35 +07:00
parent b2a58b44d4
commit ac00971d47
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 6 additions and 5 deletions

View File

@ -280,11 +280,12 @@ class Command(BaseCommand):
self.style.SUCCESS(f" added new default: {new_default}") self.style.SUCCESS(f" added new default: {new_default}")
) )
cleared = AppConfig().clear_old_keys() # FIXME
for removed_key in cleared: # cleared = AppConfig().clear_old_keys()
self.stdout.write( # for removed_key in cleared:
self.style.SUCCESS(f" removed old key: {removed_key}") # self.stdout.write(
) # self.style.SUCCESS(f" removed old key: {removed_key}")
# )
return return