Skip to content

Commit

Permalink
Merge pull request #287 from YuriCat/chore/no_fileno
Browse files Browse the repository at this point in the history
chore: remove fileno() inferface from PickledConnection
  • Loading branch information
YuriCat committed Sep 22, 2023
2 parents bf8587d + 31b8fb9 commit 1ea3dc3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions handyrl/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ def close(self):
self.conn.close()
self.conn = None

def fileno(self):
return self.conn.fileno()

def _recv(self, size):
buf = io.BytesIO()
while size > 0:
Expand Down

0 comments on commit 1ea3dc3

Please sign in to comment.