Skip to content

Commit

Permalink
Merge branch 'main' of github.com:manusimidt/py-xbrl
Browse files Browse the repository at this point in the history
  • Loading branch information
manusimidt committed Jul 6, 2024
2 parents bb0ef39 + f5b2a24 commit f5d4a5e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**XBRL document**
Please provide a link to the XBRL document(s) with which you have encountered the issue

**Describe the bug**
A clear and concise description of what the bug is.
6 changes: 6 additions & 0 deletions xbrl/transformations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
Prefix: ixt
Namespace: http://www.xbrl.org/inlineXBRL/transformation/2020-02-12
Name: XII Transformation Registry 5
Prefix: ixt
Namespace: http://www.xbrl.org/inlineXBRL/transformation/2022-02-16
Name: SEC Specific Transformation Registry
Prefix: ixt-sec
Namespace: http://www.sec.gov/inlineXBRL/transformation/2015-08-31
Expand Down Expand Up @@ -591,6 +595,8 @@ def normalize(namespace: str, formatCode: str, value: str) -> str:
return ixt4[formatCode](value)
elif namespace == 'http://www.sec.gov/inlineXBRL/transformation/2015-08-31':
return ixt_sec[formatCode](value)
elif namespace == 'http://www.xbrl.org/inlineXBRL/transformation/2022-02-16':
return ixt4[formatCode](value)
else:
raise RegistryNotSupported(namespace)
except KeyError:
Expand Down

0 comments on commit f5d4a5e

Please sign in to comment.