Missing Key bug fix (#37)

This commit is contained in:
Mark Cheese 2019-12-10 19:12:57 -05:00 committed by Zach H
parent 8678f6003a
commit 8eb31aa752

View file

@ -53,6 +53,14 @@ def validate_io_streams(input_file: pathlib.Path, output_dir: Dict) -> bool:
:param output_dir: Output dir
:return: Good to continue status
"""
output_dir.update(
{
"useAllPrices": False,
"useAllDeckFiles": False,
"useKeywords": False,
"useCardTypes": False,
}
)
if input_file.is_file():
LOGGER.info("Building using AllPrintings.json master file.")
if input_file.parent.joinpath("AllPrices.json").is_file():