Crain-32 / Multiworld_Client

MIT License
1 stars 4 forks source link

Function Return Value Documentation #5

Closed Crain-32 closed 2 years ago

Crain-32 commented 2 years ago

Each of the functions inside clientSocket.py, windWakerInterface.py, and stompframemanager.py should include return Type hints. Even if it is just None

For example in windWakerInterface.py

def hook():
  dme.hook()
  # Should be
def hook() -> None:
  dme.hook()