Browse Source

Fixed a typo

master
Bryan Miller 6 years ago
parent
commit
4f7d1705ce
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      game/gbe/events.py

+ 1
- 1
game/gbe/events.py View File



def unlisten(self, signal, fn): def unlisten(self, signal, fn):
ref = _getWeakRef(fn) ref = _getWeakRef(fn)
if res is None or ref() is None:
if ref is None or ref() is None:
return # Not a function. Nothing to do. return # Not a function. Nothing to do.
if signal in self._signals: if signal in self._signals:
if ref in self._signals[signal]: if ref in self._signals[signal]:

Loading…
Cancel
Save