diff options
Diffstat (limited to 'gitlab/v4/objects/projects.py')
| -rw-r--r-- | gitlab/v4/objects/projects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects/projects.py b/gitlab/v4/objects/projects.py index 443eb3d..6eaacf3 100644 --- a/gitlab/v4/objects/projects.py +++ b/gitlab/v4/objects/projects.py @@ -1030,5 +1030,5 @@ class ProjectStorageManager(GetWithoutIdMixin, RESTManager): def get( self, id: Optional[Union[int, str]] = None, **kwargs: Any - ) -> Optional[ProjectStorage]: - return cast(Optional[ProjectStorage], super().get(id=id, **kwargs)) + ) -> ProjectStorage: + return cast(ProjectStorage, super().get(id=id, **kwargs)) |
