Fix indentation contains tabs (flake8 E101,W191) (#1573)
This commit is contained in:
committed by
John Law
parent
dbaedd4ed7
commit
b838f1042c
@@ -113,7 +113,7 @@ if __name__ == "__main__":
|
||||
import sys
|
||||
|
||||
"""
|
||||
user_input = input('Enter numbers separated by comma:\n').strip()
|
||||
user_input = input('Enter numbers separated by comma:\n').strip()
|
||||
collection = [int(item) for item in user_input.split(',')]
|
||||
try:
|
||||
__assert_sorted(collection)
|
||||
@@ -122,7 +122,7 @@ if __name__ == "__main__":
|
||||
|
||||
target_input = input('Enter a single number to be found in the list:\n')
|
||||
target = int(target_input)
|
||||
"""
|
||||
"""
|
||||
|
||||
debug = 0
|
||||
if debug == 1:
|
||||
|
||||
Reference in New Issue
Block a user