Skip to content

Commit 9ba3b59

Browse files
Merge pull request #122 from lindsay-stevens/update-deps
Update dependencies
2 parents 0569403 + 53567d1 commit 9ba3b59

15 files changed

Lines changed: 26 additions & 28 deletions

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
matrix:
4242
python: ['3.10', '3.11', '3.12', '3.13']
4343
os: [ubuntu-latest, macos-latest, windows-latest]
44-
pydantic: ['2.9.2']
44+
pydantic: ['2.11.7']
4545
# Test pydantic at lower boundary of requirement compatibility spec.
4646
include:
4747
- python: '3.12'

pyodk/_endpoints/comments.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ class URLs:
2424

2525
class CommentService(Service):
2626
__slots__ = (
27-
"urls",
28-
"session",
29-
"default_project_id",
3027
"default_form_id",
3128
"default_instance_id",
29+
"default_project_id",
30+
"session",
31+
"urls",
3232
)
3333

3434
def __init__(

pyodk/_endpoints/entities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class EntityService(Service):
9292
Entities are like instances.
9393
"""
9494

95-
__slots__ = ("urls", "session", "default_project_id", "default_entity_list_name")
95+
__slots__ = ("default_entity_list_name", "default_project_id", "session", "urls")
9696

9797
def __init__(
9898
self,

pyodk/_endpoints/entity_list_properties.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ class URLs:
2424

2525
class EntityListPropertyService(Service):
2626
__slots__ = (
27-
"urls",
28-
"session",
29-
"default_project_id",
3027
"default_entity_list_name",
28+
"default_project_id",
29+
"session",
30+
"urls",
3131
)
3232

3333
def __init__(

pyodk/_endpoints/entity_lists.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ class EntityListService(Service):
4949
"""
5050

5151
__slots__ = (
52-
"urls",
53-
"session",
54-
"_default_project_id",
5552
"_default_entity_list_name",
53+
"_default_project_id",
5654
"_property_service",
5755
"add_property",
56+
"session",
57+
"urls",
5858
)
5959

6060
def __init__(

pyodk/_endpoints/form_assignments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class URLs:
1616

1717

1818
class FormAssignmentService(Service):
19-
__slots__ = ("urls", "session", "default_project_id", "default_form_id")
19+
__slots__ = ("default_form_id", "default_project_id", "session", "urls")
2020

2121
def __init__(
2222
self,

pyodk/_endpoints/form_draft_attachments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class URLs:
2929

3030

3131
class FormDraftAttachmentService(Service):
32-
__slots__ = ("urls", "session", "default_project_id", "default_form_id")
32+
__slots__ = ("default_form_id", "default_project_id", "session", "urls")
3333

3434
def __init__(
3535
self,

pyodk/_endpoints/form_drafts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class URLs:
9090

9191

9292
class FormDraftService(Service):
93-
__slots__ = ("urls", "session", "default_project_id", "default_form_id")
93+
__slots__ = ("default_form_id", "default_project_id", "session", "urls")
9494

9595
def __init__(
9696
self,

pyodk/_endpoints/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class FormService(Service):
5050
```
5151
"""
5252

53-
__slots__ = ("urls", "session", "default_project_id", "default_form_id")
53+
__slots__ = ("default_form_id", "default_project_id", "session", "urls")
5454

5555
def __init__(
5656
self,

pyodk/_endpoints/project_app_users.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ class URLs:
2929

3030
class ProjectAppUserService(Service):
3131
__slots__ = (
32-
"urls",
33-
"session",
3432
"default_project_id",
33+
"session",
34+
"urls",
3535
)
3636

3737
def __init__(

0 commit comments

Comments
 (0)