Procházet zdrojové kódy

Fixed a typo

master
Bryan Miller před 6 roky
rodič
revize
4f7d1705ce
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      game/gbe/events.py

+ 1
- 1
game/gbe/events.py Zobrazit soubor

@@ -40,7 +40,7 @@ class _Events:

def unlisten(self, signal, 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.
if signal in self._signals:
if ref in self._signals[signal]:

Načítá se…
Zrušit
Uložit