Skip to content

fix: Use the ProjectIterationManager within the Project object #2404

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gitlab/v4/objects/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
from .integrations import ProjectIntegrationManager, ProjectServiceManager # noqa: F401
from .invitations import ProjectInvitationManager # noqa: F401
from .issues import ProjectIssueManager # noqa: F401
from .iterations import GroupIterationManager # noqa: F401
from .iterations import ProjectIterationManager # noqa: F401
from .jobs import ProjectJobManager # noqa: F401
from .labels import ProjectLabelManager # noqa: F401
from .members import ProjectMemberAllManager, ProjectMemberManager # noqa: F401
Expand Down Expand Up @@ -187,7 +187,7 @@ class Project(RefreshMixin, SaveMixin, ObjectDeleteMixin, RepositoryMixin, RESTO
invitations: ProjectInvitationManager
issues: ProjectIssueManager
issues_statistics: ProjectIssuesStatisticsManager
iterations: GroupIterationManager
iterations: ProjectIterationManager
jobs: ProjectJobManager
keys: ProjectKeyManager
labels: ProjectLabelManager
Expand Down