Replace unnecessary use of pop()

This commit is contained in:
2024-01-03 14:20:15 -05:00
parent dbf3b35237
commit 3418bf6170
+1 -1
View File
@@ -627,7 +627,7 @@ if __name__ == "__main__":
entry_name = arguments[0].strip('/')
# determine whether to show passwords in entry previews
if arg_count > 1 and arguments[arg_count-1] in ('--show', '-s'):
arguments.pop()
del arguments[-1]
arg_count -= 1
pass_show = True
else: