Skip to content

Commit

Permalink
fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Sep 26, 2023
1 parent 9ebbb9b commit 520776e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion openatlas/api/endpoints/iiif.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from flask import request, jsonify, Response
from flask_restful import Resource

from api.resources.util import get_license_name
from openatlas.api.resources.util import get_license_name
from models.entity import Entity
from openatlas import app

Expand Down
2 changes: 1 addition & 1 deletion openatlas/api/routes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from flask_restful import Api

from api.endpoints.iiif import IIIFManifest
from openatlas.api.endpoints.iiif import IIIFManifest
from openatlas.api.endpoints.content import ClassMapping, \
GetContent, SystemClassCount
from openatlas.api.endpoints.special import GetGeometricEntities, \
Expand Down
5 changes: 2 additions & 3 deletions openatlas/views/file.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from typing import Any, Union, Optional

from flask import g, render_template, request, send_from_directory, url_for, \
redirect
from flask import g, render_template, request, send_from_directory, url_for
from flask_babel import lazy_gettext as _
from werkzeug.utils import redirect
from werkzeug.wrappers import Response

from display.util import convert_image_to_iiif, required_group
from display.util import convert_image_to_iiif
from openatlas import app
from openatlas.display.util import required_group
from openatlas.forms.form import get_table_form
Expand Down

0 comments on commit 520776e

Please sign in to comment.