Addressed line-length warnings

This commit is contained in:
2022-04-09 17:02:35 -04:00
parent d19651819a
commit 100edd07ea
+11 -12
View File
@@ -530,8 +530,8 @@ if __name__ == "__main__":
except KeyboardInterrupt: except KeyboardInterrupt:
print('\n') print('\n')
s_exit() s_exit()
elif argument == 'help' or argument == '--help' or argument == '-h' or argument == 'license' or argument == 'version' \ elif argument == 'help' or argument == '--help' or argument == '-h' or argument == 'license' or \
or argument == '-v' or argument == 'add' or argument == 'edit' or argument == 'copy': argument == 'version' or argument == '-v' or argument == 'add' or argument == 'edit' or argument == 'copy':
print_info() print_info()
elif argument == 'add note' or argument == 'add -n' or argument == 'add password' or argument == 'add -p': elif argument == 'add note' or argument == 'add -n' or argument == 'add password' or argument == 'add -p':
try: try:
@@ -551,8 +551,8 @@ if __name__ == "__main__":
except KeyboardInterrupt: except KeyboardInterrupt:
print('\n') print('\n')
s_exit() s_exit()
elif argument == 'edit username' or argument == 'edit -u' or argument == 'edit password' or argument == 'edit -p' or \ elif argument == 'edit username' or argument == 'edit -u' or argument == 'edit password' or argument == 'edit -p' \
argument == 'edit url' or argument == 'edit -l' or argument == 'edit note' or argument == 'edit -n': or argument == 'edit url' or argument == 'edit -l' or argument == 'edit note' or argument == 'edit -n':
try: try:
edit() edit()
except KeyboardInterrupt: except KeyboardInterrupt:
@@ -564,8 +564,8 @@ if __name__ == "__main__":
except KeyboardInterrupt: except KeyboardInterrupt:
print('\n') print('\n')
s_exit() s_exit()
elif argument == 'copy username' or argument == 'copy -u' or argument == 'copy password' or argument == 'copy -p' or \ elif argument == 'copy username' or argument == 'copy -u' or argument == 'copy password' or argument == 'copy -p' \
argument == 'copy url' or argument == 'copy -l' or argument == 'copy note' or argument == 'copy -n': or argument == 'copy url' or argument == 'copy -l' or argument == 'copy note' or argument == 'copy -n':
try: try:
copy_data() copy_data()
except KeyboardInterrupt: except KeyboardInterrupt:
@@ -585,10 +585,9 @@ if __name__ == "__main__":
s_exit() s_exit()
# sync at end of program if any changes were made # sync at end of program if any changes were made
if argument != '' and argument != 'help' and argument != '--help' and argument != '-h' and argument != 'license' and \ if argument != '' and argument != 'help' and argument != '--help' and argument != '-h' and argument != 'license' \
argument != 'add' and argument != 'sync' and argument != 'edit' and argument != 'copy username' and argument \ and argument != 'add' and argument != 'sync' and argument != 'edit' and argument != 'copy username' and \
!= 'copy -u' and argument != 'copy password' and argument != 'copy -p' and argument != 'copy url' and argument \ argument != 'copy -u' and argument != 'copy password' and argument != 'copy -p' and argument != 'copy url' \
!= 'copy -l' and argument != 'copy note' and argument != 'copy -n' and argument != 'copy' and argument \ and argument != 'copy -l' and argument != 'copy note' and argument != 'copy -n' and argument != 'copy' and \
!= 'version' and argument != '-v' and error == 0 and \ argument != 'version' and argument != '-v' and error == 0 and argument.startswith('/') is False:
argument.startswith('/') is False:
sync() sync()