Skip to content

Commit

Permalink
absolute imports in client
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Bulica committed Feb 12, 2024
1 parent a391076 commit 8ef5cec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
# if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
needs:
- build
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions fitconnect_client/client.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import requests
from hashlib import sha512
from .log import logger
from .environment import Environment, ENV_CONFIG
from .objects import Attachment, Submission
from .objects.exception import APIError
from .crypto import convert_dict_to_json_bytes, encrypt_dict_with_key, encrypt_bytes_with_key
from fitconnect_client.log import logger
from fitconnect_client.environment import Environment, ENV_CONFIG
from fitconnect_client.objects import Attachment, Submission
from fitconnect_client.objects.exception import APIError
from fitconnect_client.crypto import convert_dict_to_json_bytes, encrypt_dict_with_key, encrypt_bytes_with_key


class FitconnectClient:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="fitconnect_client",
packages=find_packages(include=["fitconnect_client", "fitconnect_client.objects"]),
version="0.1.0",
version="0.1.1",
description="A python SDK to interact with the German Fitconnect system",
long_description="A python SDK to interact with the German Fitconnect system",
author="Jon Bulica",
Expand Down

0 comments on commit 8ef5cec

Please sign in to comment.