Fix typing issues

They were caused by upgrading to a higher mypy version, which found more mistakes
This commit is contained in:
Jaime van Kessel 2019-07-23 12:58:46 +02:00
parent 34e823e189
commit 9ceb9ce18b
7 changed files with 14 additions and 14 deletions

View file

@ -770,7 +770,7 @@ class BuildVolume(SceneNode):
self._has_errors = len(self._error_areas) > 0
self._disallowed_areas = [] # type: List[Polygon]
self._disallowed_areas = []
for extruder_id in result_areas:
self._disallowed_areas.extend(result_areas[extruder_id])
self._disallowed_areas_no_brim = []