#!/usr/bin/python3 -s

import sys
sys.path.insert(0, '.')

import signal

from os import kill

kill(1, signal.SIGHUP)

