From 22281be93db8e0bbff04d941211e6ff50d4c4583 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Fri, 19 Mar 2021 18:04:22 +1100 Subject: [PATCH] fixed up a few issues found from linter --- refimg.py | 2 ++ settings.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/refimg.py b/refimg.py index 41b7d8b..c258e5f 100644 --- a/refimg.py +++ b/refimg.py @@ -7,6 +7,8 @@ from sqlalchemy.exc import SQLAlchemyError from status import st, Status import os +# pylint: disable=no-member + ################################################################################ # Class describing Refimg in the database, and via sqlalchemy, connected to the DB as well ################################################################################ diff --git a/settings.py b/settings.py index 7efcba2..f86154d 100644 --- a/settings.py +++ b/settings.py @@ -6,6 +6,8 @@ from sqlalchemy import Sequence from sqlalchemy.exc import SQLAlchemyError from status import st, Status +# pylint: disable=no-member + ################################################################################ # Class describing Settings in the database, and via sqlalchemy, connected to the DB as well ################################################################################