remove double negative in apmc file check

This commit is contained in:
espeon65536 2021-08-23 12:13:07 -05:00 committed by Fabian Dill
parent 3a5a6a096b
commit 21a5170337
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ if __name__ == '__main__':
parser.add_argument("apmc_file", default=None, nargs='?', help="Path to an Archipelago Minecraft data file (.apmc)")
args = parser.parse_args()
apmc_file = os.path.abspath(args.apmc_file) if args.apmc_file is not None else None
apmc_file = os.path.abspath(args.apmc_file) if args.apmc_file else None
# Change to executable's working directory
os.chdir(os.path.abspath(os.path.dirname(sys.argv[0])))