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 811067e commit fd8dd0bCopy full SHA for fd8dd0b
pdal/pio.py
@@ -52,7 +52,7 @@ def __add__(self, other):
52
return self.pipeline + other
53
54
def __dir__(self):
55
- extra_keys = [e["name"][len(self.key):] for e in PDAL_DRIVERS if e["name"].startswith(self.key)]
+ extra_keys = [e["name"][len(self.key):] for e in PDAL_DRIVERS if e["name"].startswith(self.key)] + ["auto"]
56
return super().__dir__() + [e for e in extra_keys if len(e) > 0]
57
58
def execute(self):
0 commit comments