run formatting

This commit is contained in:
David Kane 2020-11-16 10:55:30 +00:00
commit b33c45f073

View file

@ -69,7 +69,9 @@ class ForeignKey(ForeignKeyBase):
other_column = tuple(other_column)
else:
other_column = (other_column,)
self = super(ForeignKey, cls).__new__(cls, table, column, other_table, other_column)
self = super(ForeignKey, cls).__new__(
cls, table, column, other_table, other_column
)
return self
@property