Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
SDESK-7441
  • Loading branch information
eos87 committed Dec 2, 2024
1 parent 84c6f2c commit 0f26b18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions server/planning/assignments/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
)

from planning.types import AssignmentResourceModel
from .service import AssingmentsAsyncService
from .service import AssignmentsAsyncService

assignments_resource_config = ResourceConfig(
name="assignments",
data_class=AssignmentResourceModel,
service=AssingmentsAsyncService,
service=AssignmentsAsyncService,
etag_ignore_fields=["planning", "published_state", "published_at"],
mongo=MongoResourceConfig(
indexes=[
Expand Down
2 changes: 1 addition & 1 deletion server/planning/assignments/service.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from planning.core.service import BasePlanningAsyncService


class AssingmentsAsyncService(BasePlanningAsyncService):
class AssignmentsAsyncService(BasePlanningAsyncService):
pass

0 comments on commit 0f26b18

Please sign in to comment.