diff --git a/hy/_compat.py b/hy/_compat.py index 80d8f80..af710f2 100644 --- a/hy/_compat.py +++ b/hy/_compat.py @@ -56,4 +56,5 @@ else: if PY3: exec('def raise_empty(t, *args): raise t(*args) from None') else: - def raise_empty(t, *args): raise t(*args) + def raise_empty(t, *args): + raise t(*args)