#_-*-_coding:_utf-8_-*-
"""
Name: corona.py
Author: Charles Michael Farías
Proyect: my eggs are full
Created: beginning quarantine
Copyright: filled eggs community
"""
from government import ended_quarantine
from my_life_in_house import eat, sleep, code,\
watch_tv, scratch_eggs, tell_same_jokes
from extreme_actions import CutOffNeckWithEdgeOfNight
MY_EGGS_ARE_FULL = 15 # or how many you support
def stay_in_house(day: int = 0):
"""until my eggs are full or endeds quarantine"""
eat(); sleep(); code(); watch_tv()
scratch_eggs(); tell_same_jokes()
if ended_quarantine:
return
day += 1
if day > MY_EGGS_ARE_FULL:
raise CutOffNeckWithEdgeOfNight(
"I Not support anything more")
stay_in_house(day)
stay_in_house()