Skip to content

Commit a63b2af

Browse files
tr11fantix
authored andcommitted
Pass flake8
1 parent 119c920 commit a63b2af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/gino/crud.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,8 @@ def lookup(self):
579579
"""
580580
exps = []
581581
for c in self.__table__.primary_key.columns:
582-
exps.append(c == getattr(self, self._column_name_map.invert_get(c.name)))
582+
exps.append(c == getattr(self,
583+
self._column_name_map.invert_get(c.name)))
583584
if exps:
584585
return sa.and_(*exps)
585586
else:

0 commit comments

Comments
 (0)