Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 2, 2024
1 parent 2b11568 commit a762b76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/execnet/script/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def clientside() -> NoReturn:
class promptagent(Thread):
def __init__(self, clientsock) -> None:
print("server side starting")
super.__init__() # type: ignore[call-overload]
super().__init__() # type: ignore[call-overload]
self.clientsock = clientsock

def run(self) -> None:
Expand Down
2 changes: 1 addition & 1 deletion src/execnet/script/socketserverservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, args) -> None:
win32evtlogutil.AddSourceToRegistry(
self._svc_display_name_, servicemanager.__file__, "Application"
)
super.__init__(args)
super().__init__(args)
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
self.WAIT_TIME = 1000 # in milliseconds

Expand Down

0 comments on commit a762b76

Please sign in to comment.