Fix split_manifest default value

This commit is contained in:
Matthieu Helleboid 2023-01-20 19:11:18 +01:00 committed by Trenton H
parent b33ba4c902
commit 20763e7c26

View File

@ -133,7 +133,7 @@ class Command(BaseCommand):
def __init__(self, *args, **kwargs):
BaseCommand.__init__(self, *args, **kwargs)
self.target: Path = None
self.split_manifest = None
self.split_manifest = False
self.files_in_export_dir: Set[Path] = set()
self.exported_files: List[Path] = []
self.compare_checksums = False