Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
kyujin-cho committed Aug 19, 2024
1 parent fd59d5a commit 046dc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ai/backend/manager/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ async def create_session(
conn = await db_sess.connection()
assert conn
# check if network exists
if (_network_id := config.get("attach_network")):
if _network_id := config.get("attach_network"):
network = await NetworkRow.get(db_sess, _network_id)
else:
network = None
Expand Down

0 comments on commit 046dc32

Please sign in to comment.