We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab8f1d commit 5cf3885Copy full SHA for 5cf3885
pdal/pio.py
@@ -31,7 +31,7 @@ def __init__(self, prefix, **kwargs):
31
self.spec.update(kwargs)
32
self.spec["type"] = self.key
33
# NOTE: special case to support reading files without passing an explicit reader
34
- if (self.prefix == "readers") and kwargs.get("type") == "auto":
+ if (self.prefix in ["readers", "writers"]) and kwargs.get("type") == "auto":
35
del self.spec["type"]
36
37
@property
0 commit comments