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 4cf2a7a commit 9a14e55Copy full SHA for 9a14e55
intake/catalog/base.py
@@ -276,6 +276,8 @@ def serialize(self):
276
kw = entry._captured_init_kwargs.copy()
277
kw.pop('catalog', None)
278
kw['parameters'] = {k.name: k.__getstate__()['kwargs'] for k in kw.get('parameters', [])}
279
+ if not isinstance(kw['driver'], str):
280
+ kw['driver'] = str(kw['driver']).split("'")[1]
281
output["sources"][key] = kw
282
return yaml.dump(output)
283
0 commit comments