Skip to content

Commit 9f92d57

Browse files
committed
bug fix
1 parent ce683c9 commit 9f92d57

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
setup(name="staffjoy",
44
packages=find_packages(),
5-
version="0.9",
5+
version="0.10",
66
description="Staffjoy API Wrapper in Python",
77
author="Philip Thomas",
88
author_email="help@staffjoy.com",
99
license="MIT",
1010
url="https://github.com/staffjoy/client_python",
11-
download_url="https://github.com/StaffJoy/client_python/archive/0.9.tar.gz",
11+
download_url="https://github.com/StaffJoy/client_python/archive/0.10.tar.gz",
1212
keywords=["staffjoy-api", "staffjoy", "staff joy"],
1313
install_requires=["requests[security]"], )

staffjoy/resources/chomp_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33

44
class ChompTask(Resource):
5-
PATH = "/internal/tasking/chomp/{schedule_id}"
5+
PATH = "internal/tasking/chomp/{schedule_id}"
66
ENVELOPE = None
77
ID_NAME = "schedule_id"

staffjoy/resources/mobius_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33

44
class MobiusTask(Resource):
5-
PATH = "/internal/tasking/mobius/{schedule_id}"
5+
PATH = "internal/tasking/mobius/{schedule_id}"
66
ID_NAME = "schedule_id"
77
ENVELOPE = None

0 commit comments

Comments
 (0)