mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
Applied latest Black
This commit is contained in:
parent
f045d8559a
commit
c7e5dd6451
2 changed files with 43 additions and 34 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue