Skip to content

Commit 6d7d834

Browse files
natehardisonronf
authored andcommitted
Add missing return type annotation
1 parent 113abb0 commit 6d7d834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncssh/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ def is_server(self) -> bool:
12021202

12031203
return self._server
12041204

1205-
def is_closed(self):
1205+
def is_closed(self) -> bool:
12061206
"""Return whether the connection is closed"""
12071207

12081208
return self._close_event.is_set()

0 commit comments

Comments
 (0)