Skip to content

Commit

Permalink
fix: Removing optional from timeout_in_seconds
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Axelson <[email protected]>
  • Loading branch information
baxeaz committed Oct 23, 2024
1 parent 55215b5 commit 3615074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openjd/adaptor_runtime/_entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def _get_integration_data(self, parsed_args: Namespace) -> _IntegrationData:
def start(
self,
reentry_exe: Optional[Path] = None,
timeout_in_seconds: Optional[float] = _FRONTEND_RUNNER_REQUEST_TIMEOUT,
timeout_in_seconds: float = _FRONTEND_RUNNER_REQUEST_TIMEOUT,
) -> None:

Check notice

Code scanning / CodeQL

Explicit returns mixed with implicit (fall through) returns Note

Mixing implicit and explicit returns may indicate an error as implicit returns always return None.
"""
Starts the run of the adaptor.
Expand Down

0 comments on commit 3615074

Please sign in to comment.