Skip to content

Commit

Permalink
move the utils module to the root level of the package
Browse files Browse the repository at this point in the history
  • Loading branch information
MAfarrag committed Dec 15, 2024
1 parent 7f1412e commit efbbef9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/unicloud/google_cloud/gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from google.oauth2 import service_account

from unicloud.abstract_class import CloudStorageFactory
from unicloud.google_cloud.utils import decode
from unicloud.utils import decode


class GCS(CloudStorageFactory):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import unittest

from unicloud.google_cloud.utils import decode, encode
from unicloud.utils import decode, encode


class TestEncodeDecode(unittest.TestCase):
Expand Down

0 comments on commit efbbef9

Please sign in to comment.