aresch / pyenet

A python wrapper for the ENet library
BSD 3-Clause "New" or "Revised" License
52 stars 30 forks source link

Stub file and crash fix #32

Closed biggus-developerus closed 1 year ago

biggus-developerus commented 1 year ago

Fixes

From:

line 576 | return self._enet_peer.data

To:

line 576 | return self._enet_peer.data if self._enet_peer.data else None

New