summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/appearance.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/appearance.py')
-rw-r--r--gitlab/v4/objects/appearance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/appearance.py b/gitlab/v4/objects/appearance.py
index 0639c13..f6643f4 100644
--- a/gitlab/v4/objects/appearance.py
+++ b/gitlab/v4/objects/appearance.py
@@ -61,4 +61,4 @@ class ApplicationAppearanceManager(GetWithoutIdMixin, UpdateMixin, RESTManager):
def get(
self, id: Optional[Union[int, str]] = None, **kwargs: Any
) -> Optional[ApplicationAppearance]:
- return cast(ApplicationAppearance, super().get(id=id, **kwargs))
+ return cast(Optional[ApplicationAppearance], super().get(id=id, **kwargs))