Skip to content

Commit

Permalink
Merge pull request #45 from KOSASIH/deepsource-transform-f983858b
Browse files Browse the repository at this point in the history
style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf
  • Loading branch information
KOSASIH authored May 11, 2024
2 parents 00796b7 + 47cabd1 commit 246eb71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

Base = declarative_base()


class User(Base):
__tablename__ = 'users'
__tablename__ = "users"
id = Column(Integer, primary_key=True)
username = Column(String, unique=True)
password = Column(String)
Expand Down

0 comments on commit 246eb71

Please sign in to comment.