remove wrong spelled file

This commit is contained in:
mollusk 2021-12-06 21:08:35 -07:00
parent 32182d048f
commit cb94877610

View File

@ -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")