Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mthanded authored and mthanded committed Jan 17, 2024
1 parent 4cf88d4 commit a356c4d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fastapi_users_db_beanie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ class Settings:
email_collation = Collation("en", strength=2)
indexes = [
IndexModel(
"email", name="case_insensitive_unique_email_index", collation=email_collation, unique=True
"email",
name="case_insensitive_unique_email_index",
collation=email_collation,
unique=True,
),
]

Expand Down

0 comments on commit a356c4d

Please sign in to comment.