Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsay-stevens committed Jun 3, 2024
1 parent 349a8ed commit 3444dc0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
A script that uses CSV data create an entity list and populate it with entities.
A script that uses CSV data to create an entity list and populate it with entities.
"""

import csv
Expand Down
2 changes: 1 addition & 1 deletion pyodk/_endpoints/entity_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def create(
project_id: int | None = None,
) -> EntityList:
"""
Create an Entity.
Create an Entity List.
:param approval_required: If False, create Entities as soon as Submissions are
received by Central. If True, create Entities when Submissions are marked as
Expand Down
2 changes: 1 addition & 1 deletion tests/endpoints/test_entity_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_list__ok(self):
self.assertIsInstance(o, EntityList)

def test_get__ok(self):
"""Should an EntityList object."""
"""Should return an EntityList object."""
fixture = entity_lists_data.test_entity_lists[2]
with patch.object(Session, "request") as mock_session:
mock_session.return_value.status_code = 200
Expand Down

0 comments on commit 3444dc0

Please sign in to comment.