remove unused parameter

This commit is contained in:
Guille Gutierrez 2023-11-06 10:14:27 +01:00
parent 43fa1e0d92
commit 38d8013356

View File

@ -18,7 +18,6 @@ class GeometryFactory:
""" """
def __init__(self, file_type, def __init__(self, file_type,
path=None, path=None,
data_frame=None,
aliases_field=None, aliases_field=None,
height_field=None, height_field=None,
year_of_construction_field=None, year_of_construction_field=None,
@ -28,7 +27,6 @@ class GeometryFactory:
self._file_type = '_' + file_type.lower() self._file_type = '_' + file_type.lower()
validate_import_export_type(GeometryFactory, file_type) validate_import_export_type(GeometryFactory, file_type)
self._path = path self._path = path
self._data_frame = data_frame
self._aliases_field = aliases_field self._aliases_field = aliases_field
self._height_field = height_field self._height_field = height_field
self._year_of_construction_field = year_of_construction_field self._year_of_construction_field = year_of_construction_field