minor cleanup

This commit is contained in:
nate
2017-12-03 20:05:04 -08:00
parent fb0463df2d
commit 9376908cbd
2 changed files with 2 additions and 6 deletions

View File

@@ -212,8 +212,4 @@ def input_yn(query):
while ans not in ["y", "n"]:
ans = raw_input("'y' or 'n' please: ")
if ans == "y":
return True
else:
return False
return ans == "y"