kill_switch.py 162 B

123456789
  1. from neurons import Neurone
  2. import sys
  3. class Kill_switch(Neurone):
  4. def __init__(self, *args , **kwargs):
  5. Neurone.__init__(self)
  6. sys.exit()