Browse Source

ensure ret value when a hook has no functions.

Stefano Cossu 2 năm trước cách đây
mục cha
commit
870246d7c9
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      transliterator/trans.py

+ 1 - 0
transliterator/trans.py

@@ -197,6 +197,7 @@ def transliterate(src, lang, r2s=False):
 
 
 def _run_hook(hname, ctx, hooks):
+    ret = None
     for hook_def in hooks.get(hname, []):
         kwargs = hook_def[1] if len(hook_def > 1) else {}
         ret = hook_def[0](ctx, **kwargs)