diff -r 57875cf423c9 -r 2372284d9457 tests/test-duplicateoptions.py --- a/tests/test-duplicateoptions.py Sat Oct 05 10:29:34 2019 -0400 +++ b/tests/test-duplicateoptions.py Sun Oct 06 09:45:02 2019 -0400 @@ -10,7 +10,8 @@ try: import sqlite3 - del sqlite3 # unused, just checking that import works + + del sqlite3 # unused, just checking that import works except ImportError: ignore.add(b'sqlitestore') @@ -41,8 +42,9 @@ seenshort = globalshort.copy() seenlong = globallong.copy() for option in entry[1]: - if ((option[0] and option[0] in seenshort) or - (option[1] and option[1] in seenlong)): + if (option[0] and option[0] in seenshort) or ( + option[1] and option[1] in seenlong + ): print("command '" + cmd + "' has duplicate option " + str(option)) seenshort.add(option[0]) seenlong.add(option[1])