Skip to content

Commit

Permalink
Align return type notation with code style
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jan 7, 2025
1 parent da444cc commit 9d35212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions github/CheckRun.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def app(self) -> GithubApp:
return self._app.value

@property
def check_suite(self) -> github.CheckSuite.CheckSuite:
def check_suite(self) -> CheckSuite:
self._completeIfNotSet(self._check_suite)
return self._check_suite.value

Expand All @@ -124,7 +124,7 @@ def conclusion(self) -> str:
return self._conclusion.value

@property
def deployment(self) -> github.Deployment.Deployment:
def deployment(self) -> Deployment:
self._completeIfNotSet(self._deployment)
return self._deployment.value

Expand Down

0 comments on commit 9d35212

Please sign in to comment.