Skip to content

Commit

Permalink
[CLEAN] Prefer direct imports
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Jan 24, 2025
1 parent f7429bb commit 4a991f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/app/datamgmt/filters/filters_db.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from flask_login import current_user
from sqlalchemy import and_

from app.models import SavedFilter
from app.models.models import SavedFilter


def get_filter_by_id(filter_id):
Expand Down
2 changes: 1 addition & 1 deletion source/app/datamgmt/manage/manage_srv_settings_db.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from sqlalchemy import text

from app import db
from app.models import ServerSettings
from app.models.models import ServerSettings
from app.schema.marshables import ServerSettingsSchema


Expand Down
2 changes: 1 addition & 1 deletion source/app/iris_engine/updater/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from app import socket_io
from app.datamgmt.manage.manage_srv_settings_db import get_server_settings_as_dict
from app.iris_engine.backup.backup import backup_iris_db
from app.models import ServerSettings
from app.models.models import ServerSettings
from iris_interface import IrisInterfaceStatus as IStatus

log = app.logger
Expand Down

0 comments on commit 4a991f6

Please sign in to comment.