Skip to content

Commit 84af14b

Browse files
fix: Fir 13884 fix import backward compatibil (#173)
* fix backward compatibility issues * add imports
1 parent 35154a5 commit 84af14b

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

src/firebolt/common/exception.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Prevent backward compatibility errors related to new module structure
2+
from firebolt.utils.exception import * # NOQA
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Prevent backward compatibility errors related to new module structure
2+
from firebolt.utils.token_storage import * # NOQA

src/firebolt/common/urls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Prevent backward compatibility errors related to new module structure
2+
from firebolt.utils.urls import * # NOQA

src/firebolt/common/util.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Prevent backward compatibility errors related to new module structure
2+
from firebolt.utils.util import * # NOQA

0 commit comments

Comments
 (0)