aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/quarg/database/tables.py
diff options
context:
space:
mode:
authorWolfgang Müller2023-03-30 21:06:25 +0200
committerWolfgang Müller2023-03-30 21:06:25 +0200
commitbca0806c06baccd6775ea0e10a26f490602e9520 (patch)
treed012405be4e897cfda6f2b9f24d69589a762712f /quarg/database/tables.py
parentdf585f56fb0bac5fc77fbbfc44276fe8c1f85f83 (diff)
downloadquarg-bca0806c06baccd6775ea0e10a26f490602e9520.tar.gz
Perform initial linting with ruff
Diffstat (limited to 'quarg/database/tables.py')
-rw-r--r--quarg/database/tables.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/quarg/database/tables.py b/quarg/database/tables.py
index 9b819d9..0b14eca 100644
--- a/quarg/database/tables.py
+++ b/quarg/database/tables.py
@@ -1,9 +1,17 @@
import datetime
-from sqlalchemy.schema import Column, ForeignKey
-from sqlalchemy.types import BigInteger, Boolean, DateTime, Integer, Text, TypeDecorator, TypeEngine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
+from sqlalchemy.schema import Column, ForeignKey
+from sqlalchemy.types import (
+ BigInteger,
+ Boolean,
+ DateTime,
+ Integer,
+ Text,
+ TypeDecorator,
+ TypeEngine,
+)
# Timestamps are saved in the database in UTC without timezone info, so attach