From 47cabd18d0eb21cc739bf86a5af2413e23fb369f Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 07:51:58 +0000 Subject: [PATCH] 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 This commit fixes the style issues introduced in 400f33a according to the output from 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. Details: None --- app/models/user.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/user.py b/app/models/user.py index e413270..8aa0d9e 100644 --- a/app/models/user.py +++ b/app/models/user.py @@ -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)