Run black and cog for formatting and CLI reference update

This commit is contained in:
Claude 2026-01-21 15:00:37 +00:00
commit 5ce545b592
No known key found for this signature in database
4 changed files with 59 additions and 19 deletions

View file

@ -1877,9 +1877,7 @@ class Table(Queryable):
if fk.other_table == self.name and fk.other_column in rename:
# This FK needs updating
needs_update = True
new_fks.append(
(fk.column, fk.other_table, rename[fk.other_column])
)
new_fks.append((fk.column, fk.other_table, rename[fk.other_column]))
else:
new_fks.append((fk.column, fk.other_table, fk.other_column))