diff --git a/osm/xml_handler.py b/osm/xml_handler.py index 856bfb5..be8ce25 100644 --- a/osm/xml_handler.py +++ b/osm/xml_handler.py @@ -66,8 +66,6 @@ def __init__(self, parser_helper: WayParserHelper) -> None: self.current_way: Optional[OSMWay] = None self.parser_helper = parser_helper - print(self.current_way) - print(self.current_way is not None) def startElement(self, name: str, attrs: AttributesImpl) -> None: if name == "way": @@ -82,8 +80,6 @@ def startElement(self, name: str, attrs: AttributesImpl) -> None: elif name == "tag": if attrs["k"] == "highway": - print(self.current_way) - print(attrs["v"]) self.current_way.highway = attrs["v"] elif attrs["k"] == "area": self.current_way.area = attrs["v"]