autoformat by black+isort

This commit is contained in:
clonejo 2024-01-14 18:56:43 +01:00
parent 5643dbe030
commit eba9b410c6
3 changed files with 23 additions and 11 deletions

View file

@ -1,7 +1,8 @@
from sqlalchemy import Column, ForeignKey, String, Text, Boolean
from sqlalchemy import Boolean, Column, ForeignKey, String, Text
from database import Base
class Item(Base):
__tablename__ = "items"