From cb948776104cda58064be7040b1628074fae22c9 Mon Sep 17 00:00:00 2001 From: mollusk Date: Mon, 6 Dec 2021 21:08:35 -0700 Subject: [PATCH] remove wrong spelled file --- stastionbase.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 stastionbase.py diff --git a/stastionbase.py b/stastionbase.py deleted file mode 100755 index 02c96ca..0000000 --- a/stastionbase.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/python3.10 - -class Drone: - def __init__(self, money): - self.money = money - - - - -while True: - repl = input(">> ") - - if repl == "s": - print("Show me the money") - elif repl == "q": - quit() - else: - print("Not a command, bitch") -