Skip to content

Commit 3cdb1dc

Browse files
committed
Fix lint errors
1 parent f5b40c7 commit 3cdb1dc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

examples/sqlalchemy/async_oauth_app.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,20 @@ async def async_save(self, installation: Installation):
6464
await database.execute(self.bots.insert(), b)
6565

6666
async def async_find_bot(
67-
self, *, enterprise_id: Optional[str], team_id: Optional[str], is_enterprise_install: Optional[bool]
67+
self,
68+
*,
69+
enterprise_id: Optional[str],
70+
team_id: Optional[str],
71+
is_enterprise_install: Optional[bool],
6872
) -> Optional[Bot]:
6973
c = self.bots.c
7074
query = (
7175
self.bots.select()
7276
.where(
7377
and_(
74-
c.enterprise_id == enterprise_id, c.team_id == team_id, c.is_enterprise_install == is_enterprise_install
78+
c.enterprise_id == enterprise_id,
79+
c.team_id == team_id,
80+
c.is_enterprise_install == is_enterprise_install,
7581
)
7682
)
7783
.order_by(desc(c.installed_at))

0 commit comments

Comments
 (0)