From b33c45f073b57577ab626f9765c25eb21bfd90d8 Mon Sep 17 00:00:00 2001 From: David Kane Date: Mon, 16 Nov 2020 10:55:30 +0000 Subject: [PATCH] run formatting --- sqlite_utils/db.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index 1ff7320..12a1ed4 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -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