QuackatronHQ / Gigarepo

Catching previously caught exception PYL-W0705
Bug risk
Critical
3 days ago2 years old
Catching previously caught exception type KeyboardInterrupt
 9        except (KeyboardInterrupt, EOFError):
10            print()
11            exit()
12        except (BaseException, KeyboardInterrupt) as e:13            print(e)
14
15