Skip to content

Commit

Permalink
shuffle constants to be easy to import from both core and gui
Browse files Browse the repository at this point in the history
  • Loading branch information
springmeyer committed Mar 1, 2024
1 parent ab4b9d2 commit 15c992b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion felt/core/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from .meta import PLUGIN_METADATA_PARSER
from .s3_upload_parameters import S3UploadParameters
from .enums import UsageType
from ..gui.constants import (
from ..constants import (
FELT_API_URL
)

Expand Down
2 changes: 1 addition & 1 deletion felt/core/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
)

from .pkce import generate_pkce_pair
from ..gui.constants import (
from ..constants import (
FELT_API_BASE
)

Expand Down
2 changes: 1 addition & 1 deletion felt/gui/authorize_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
)
from qgis.gui import QgsGui

from .constants import (
from ..constants import (
PRIVACY_POLICY_URL,
TOS_URL,
SIGNUP_URL
Expand Down
2 changes: 1 addition & 1 deletion felt/gui/create_map_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

from .authorization_manager import AUTHORIZATION_MANAGER
from .colored_progress_bar import ColorBar
from .constants import (
from ..constants import (
PRIVACY_POLICY_URL,
TOS_URL
)
Expand Down

0 comments on commit 15c992b

Please sign in to comment.