Skip to content

Commit

Permalink
Apply Linting & Formatting Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavberi authored and github-actions[bot] committed Mar 11, 2024
1 parent 8c3a4ef commit e511228
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion db.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
print("The members index exists.")
else:
# create the index
membersdb.create_index([("cid", 1), ("uid", 1)], unique=True, name="unique_members")
membersdb.create_index(
[("cid", 1), ("uid", 1)], unique=True, name="unique_members"
)
print("The members index was created.")

print(membersdb.index_information())
Expand Down

0 comments on commit e511228

Please sign in to comment.