Add code comment to the classes and improve overall quality

This commit is contained in:
Guille Gutierrez 2020-06-11 17:01:06 -04:00
parent 4e63ba72c6
commit def7d6cd7c

View File

@ -23,7 +23,7 @@ class TestGeometryFactory(TestCase):
def _get_citygml(self):
if self._city_gml is None:
file_path = (self._example_path / '2050 bp_2buildings.gml').resolve()
file_path = (self._example_path / 'buildings.gml').resolve()
self._city_gml = GeometryFactory('citygml', file_path).city
self.assertIsNotNone(self._city_gml, 'city is none')
return self._city_gml