Skip to content

Commit

Permalink
Fix label
Browse files Browse the repository at this point in the history
  • Loading branch information
icoxfog417 committed Mar 18, 2020
1 parent c738ebd commit f4d00b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xbrr/edinet/reader/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,9 @@ def read_value(reader, target, label_kind, label_verbose):
for k in item:
_item[k] = item[k]
for k in value:
_item[k] = value[k]
# label is aquired by schema
if not k.endswith("label"):
_item[k] = value[k]

results.append(_item)
return results
Expand Down

0 comments on commit f4d00b6

Please sign in to comment.