Skip to content

Commit f5d4a5e

Browse files
committed
Merge branch 'main' of github.com:manusimidt/py-xbrl
2 parents bb0ef39 + f5b2a24 commit f5d4a5e

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**XBRL document**
11+
Please provide a link to the XBRL document(s) with which you have encountered the issue
12+
13+
**Describe the bug**
14+
A clear and concise description of what the bug is.

xbrl/transformations/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
Prefix: ixt
1919
Namespace: http://www.xbrl.org/inlineXBRL/transformation/2020-02-12
2020
21+
Name: XII Transformation Registry 5
22+
Prefix: ixt
23+
Namespace: http://www.xbrl.org/inlineXBRL/transformation/2022-02-16
24+
2125
Name: SEC Specific Transformation Registry
2226
Prefix: ixt-sec
2327
Namespace: http://www.sec.gov/inlineXBRL/transformation/2015-08-31
@@ -591,6 +595,8 @@ def normalize(namespace: str, formatCode: str, value: str) -> str:
591595
return ixt4[formatCode](value)
592596
elif namespace == 'http://www.sec.gov/inlineXBRL/transformation/2015-08-31':
593597
return ixt_sec[formatCode](value)
598+
elif namespace == 'http://www.xbrl.org/inlineXBRL/transformation/2022-02-16':
599+
return ixt4[formatCode](value)
594600
else:
595601
raise RegistryNotSupported(namespace)
596602
except KeyError:

0 commit comments

Comments
 (0)