Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cmyui authored and tsunyoku committed Feb 20, 2024
1 parent dcc9508 commit 26046a2
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions app/repositories/clans.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,7 @@ class ClansTable(Base):

id = Column("id", Integer, primary_key=True, nullable=False, autoincrement=True)
name = Column("name", String(16, collation="utf8"), nullable=False)
tag = Column(
"tag",
String(
6,
collation="utf8",
),
nullable=False,
)
tag = Column("tag", String(6, collation="utf8"), nullable=False)
owner = Column("owner", Integer, nullable=False)
created_at = Column("created_at", DateTime, nullable=False)

Expand Down

0 comments on commit 26046a2

Please sign in to comment.