#17 Update setup

* adds calling of update_codelist.py to setup.py
* removes unused data in setup_data.py
This commit is contained in:
2021-10-13 09:10:48 +02:00
parent f4bfc0db6e
commit 757fd16b13
3 changed files with 48 additions and 73 deletions

View File

@@ -14,13 +14,15 @@ from codelist.settings import CODELIST_INTERVENTION_HANDLER_ID, CODELIST_CONSERV
CODELIST_REGISTRATION_OFFICE_ID, CODELIST_BIOTOPES_ID, CODELIST_LAW_ID, CODELIST_COMPENSATION_HANDLER_ID, \
CODELIST_COMPENSATION_ACTION_ID, CODELIST_COMPENSATION_ACTION_CLASS_ID, CODELIST_COMPENSATION_ADDITIONAL_TYPE_ID, \
CODELIST_COMPENSATION_FUNDING_ID, CODELIST_BASE_URL, CODELIST_PROCESS_TYPE_ID
from konova.management.commands.setup import BaseKonovaCommand
bool_map = {
"true": True,
"false": False,
}
class Command(BaseCommand):
class Command(BaseKonovaCommand):
help = "Performs test on collisions using the identifier generation"
def handle(self, *args, **options):
@@ -101,33 +103,4 @@ class Command(BaseCommand):
items=children,
code_list=code_list,
parent=code
)
def _break_line(self):
""" Simply prints a line break
Returns:
"""
self.stdout.write("\n")
def _write_warning(self, txt: str):
self.stdout.write(
self.style.WARNING(
txt
)
)
def _write_success(self, txt: str):
self.stdout.write(
self.style.SUCCESS(
txt
)
)
def _write_error(self, txt: str):
self.stdout.write(
self.style.ERROR(
txt
)
)
)