Skip to content

Commit eac3966

Browse files
committed
Fixed lintner issues, added python 3.13 env to tox
Signed-off-by: Martin Curlej <[email protected]>
1 parent 315e3b0 commit eac3966

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

joft/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def load_toml_app_config() -> typing.Any:
5454
pat_token = "<your jira pat token>"
5555
5656
and should be stored in one of the following directories:
57-
{', '.join(possible_paths)}\
57+
{", ".join(possible_paths)}\
5858
""")
5959
print(err_msg)
6060
sys.exit(1)
@@ -71,7 +71,7 @@ def load_toml_app_config() -> typing.Any:
7171
pat_token = "<your jira pat token>"
7272
7373
in one of the following directories:
74-
{', '.join(possible_paths)}\
74+
{", ".join(possible_paths)}\
7575
""")
7676

7777
print(err_msg)

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{311,312},type,lint
2+
envlist = py{311,312,313},type,lint
33

44
[testenv]
55
extras = test

0 commit comments

Comments
 (0)