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 aacee17 commit 44d8245Copy full SHA for 44d8245
dataflows/VERSION
@@ -1 +1 @@
1
-0.0.59
+0.0.60
dataflows/processors/load.py
@@ -200,7 +200,8 @@ def process_datapackage(self, dp: Package):
200
if len(stream.headers) != len(set(stream.headers)):
201
if not self.deduplicate_headers:
202
raise ValueError(
203
- 'Found duplicate headers. Use the `deduplicate_headers` flag')
+ 'Found duplicate headers.' +
204
+ 'Use the `deduplicate_headers` flag (found headers=%r)' % stream.headers)
205
stream.headers = self.rename_duplicate_headers(stream.headers)
206
schema = Schema().infer(
207
stream.sample, headers=stream.headers,
0 commit comments