Skip to content

Commit

Permalink
Merge pull request #97 from acroz/fix-mypy-error
Browse files Browse the repository at this point in the history
Fix internal mypy error
  • Loading branch information
acroz authored Jan 28, 2021
2 parents a6f2f53 + 2e6225c commit 6c7bf18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion livy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def create_session(
f"this version (should be one of {valid_kinds})"
)

interactive_session_params = {"kind": kind.value}
interactive_session_params: Dict[str, Any] = {"kind": kind.value}
if heartbeat_timeout is not None:
interactive_session_params[
"heartbeatTimeoutInSecond"
Expand Down

0 comments on commit 6c7bf18

Please sign in to comment.