Skip to content

Commit

Permalink
fix (#305)
Browse files Browse the repository at this point in the history
* fix

* format

---------

Co-authored-by: wjymtg <[email protected]>
  • Loading branch information
wjymtg and wjymtg authored Jan 8, 2025
1 parent cd569fb commit 45105d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version: '3.10'

- name: Install dependencies
run: pip install semver argparse
run: pip install semver

- name: Get PR labels
id: pr-labels
Expand Down
4 changes: 3 additions & 1 deletion src/bizy_server/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
from .error_handler import ErrorHandler
from .utils import is_string_valid

with open(f"{os.path.dirname(__file__)}/../../version.txt", "r") as file:
with open(
os.path.join(os.path.dirname(__file__), "..", "..", "version.txt"), "r"
) as file:
CLIENT_VERSION = file.read()


Expand Down

0 comments on commit 45105d9

Please sign in to comment.