Skip to content

Commit 868f4dc

Browse files
committed
typing: add missing inheritance from BaseHandler
1 parent 3091925 commit 868f4dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/osmium/_osmium.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class MergeInputReader:
111111
"""
112112

113113

114-
class SimpleWriter:
114+
class SimpleWriter(BaseHandler):
115115
""" Basic writer for OSM data. The SimpleWriter can write out
116116
object that are explicitly passed or function as a handler and
117117
write out all objects it receives. It is also possible to
@@ -182,7 +182,7 @@ class SimpleWriter:
182182
def __exit__(self, *args: Any) -> None:...
183183

184184

185-
class NodeLocationsForWays:
185+
class NodeLocationsForWays(BaseHandler):
186186
""" Handler for retriving and caching locations from ways
187187
and adding them to ways.
188188
"""

0 commit comments

Comments
 (0)