Applied latest Black

This commit is contained in:
Simon Willison 2020-10-27 09:26:01 -07:00
commit c7e5dd6451
2 changed files with 43 additions and 34 deletions

View file

@ -1773,7 +1773,12 @@ class Table(Queryable):
return pk
def m2m(
self, other_table, record_or_iterable=None, pk=DEFAULT, lookup=None, m2m_table=None
self,
other_table,
record_or_iterable=None,
pk=DEFAULT,
lookup=None,
m2m_table=None,
):
if isinstance(other_table, str):
other_table = self.db.table(other_table, pk=pk)