From 837d0b88298078d6275a470c8d160b322379d8e8 Mon Sep 17 00:00:00 2001 From: Mark Cheese <35660089+omfgitsmark@users.noreply.github.com> Date: Tue, 7 Jul 2020 14:54:57 -0400 Subject: [PATCH] booster fix fix --- mtgsqlive/json2sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtgsqlive/json2sql.py b/mtgsqlive/json2sql.py index 24382ee..f683241 100644 --- a/mtgsqlive/json2sql.py +++ b/mtgsqlive/json2sql.py @@ -22,7 +22,7 @@ def execute(json_input, output_file, check_extras=False) -> None: """ if not valid_input_output(json_input, output_file): exit(1) - check_extra_inputs(json_input, output_file) + check_extra_inputs(json_input, output_file, check_extras) LOGGER.info("Loading json file into memory") with json_input.open("r", encoding="utf8") as json_file: