Skip to content

Commit

Permalink
fix compat 3.x typing incompatible int|None
Browse files Browse the repository at this point in the history
  • Loading branch information
joknarf committed Jun 30, 2024
1 parent 2ddeeec commit 7f8a8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssh_para/ssh_para.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class JobStatus:
host: str = ""
duration: int = 0
pid: int = -1
exit: int | None = None
exit: int = None
logfile: str = ""
log: str = ""
thread_id: int = -1
Expand Down

0 comments on commit 7f8a8e6

Please sign in to comment.