Skip to content

Commit 9155650

Browse files
committed
Updates to tasking
1 parent 62a48f8 commit 9155650

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

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.6",
5+
version="0.7",
66
description="Staffjoy API Wrapper in Python",
77
author="Philip Thomas",
88
author_email="[email protected]",
99
license="MIT",
1010
url="https://github.com/staffjoy/client_python",
11-
download_url="https://github.com/StaffJoy/client_python/archive/0.6.tar.gz",
11+
download_url="https://github.com/StaffJoy/client_python/archive/0.7.tar.gz",
1212
keywords=["staffjoy-api", "staffjoy", "staff joy"],
1313
install_requires=["requests[security]"], )

staffjoy/resources/chomp_task.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
class ChompTask(Resource):
55
PATH = "/internal/tasking/chomp/{schedule_id}"
66
ENVELOPE = None
7+
ID_NAME = "schedule_id"

staffjoy/resources/mobius_task.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33

44
class MobiusTask(Resource):
55
PATH = "/internal/tasking/mobius/{schedule_id}"
6+
ID_NAME = "schedule_id"
67
ENVELOPE = None

0 commit comments

Comments
 (0)