aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/quarg/database/tables.py
diff options
context:
space:
mode:
authorWolfgang Müller2023-03-30 21:05:12 +0200
committerWolfgang Müller2023-03-30 21:05:12 +0200
commitdf585f56fb0bac5fc77fbbfc44276fe8c1f85f83 (patch)
treedad1e301608335759405cef0683b84da98440699 /quarg/database/tables.py
parentbd4c0b3d01ed56ed21297a9e25c53e2bcfdb20c1 (diff)
downloadquarg-df585f56fb0bac5fc77fbbfc44276fe8c1f85f83.tar.gz
Get rid of pylint directives
Since we are migrating to ruff, these are not used anymore.
Diffstat (limited to 'quarg/database/tables.py')
-rw-r--r--quarg/database/tables.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/quarg/database/tables.py b/quarg/database/tables.py
index 6e92c14..9b819d9 100644
--- a/quarg/database/tables.py
+++ b/quarg/database/tables.py
@@ -5,15 +5,10 @@ from sqlalchemy.types import BigInteger, Boolean, DateTime, Integer, Text, TypeD
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
-# pylint: disable=too-few-public-methods
# Timestamps are saved in the database in UTC without timezone info, so attach
# a UTC timezone to the datetime object
class DateTimeUTC(TypeDecorator):
- # pylint complains that process_literal_param and python_type are
- # abstract but not overriden. This seems to not be necessary with
- # SQLAlchemy, so squash those warnings
- # pylint: disable=abstract-method
impl = TypeEngine
cache_ok = True