Skip to content

Commit

Permalink
Removed forgotten print statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
IDoUseLinux authored Nov 20, 2023
1 parent 1d1d18c commit 96d26db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aint.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,11 @@ def spoof_text(ai_text, scramble_aggresiveness) :
else : break

scramble_aggresiveness = input("Please input the amount of scramble aggressiveness, leave blank for default\n")
print(scramble_aggresiveness)
while scramble_aggresiveness.isdigit() == False and scramble_aggresiveness != '' :
scramble_aggresiveness = input("Please input the amount of scramble aggressiveness, leave blank for default\n")

if scramble_aggresiveness == '' :
scramble_aggresiveness = 30
else : scramble_aggresiveness = int(scramble_aggresiveness)

print(spoof_text(ai_text=ai_text, scramble_aggresiveness=scramble_aggresiveness))
print(spoof_text(ai_text=ai_text, scramble_aggresiveness=scramble_aggresiveness))

0 comments on commit 96d26db

Please sign in to comment.