Merge branch 'dev' into feature-redo-ocr

This commit is contained in:
shamoon
2022-07-02 08:41:18 -07:00
committed by GitHub
24 changed files with 1347 additions and 979 deletions

View File

@@ -3,7 +3,9 @@ import sys
from django.core.management.commands.loaddata import Command as LoadDataCommand
class Command(LoadDataCommand):
# This class is used to migrate data between databases
# That's difficult to test
class Command(LoadDataCommand): # pragma: nocover
"""
Allow the loading of data from standard in. Sourced originally from:
https://gist.github.com/bmispelon/ad5a2c333443b3a1d051 (MIT licensed)