Skip to content

Commit

Permalink
Merge pull request #37 from derekgengenbacher-wf/XMAS-4195
Browse files Browse the repository at this point in the history
XMAS-4195 - Fix future warning and bump version
  • Loading branch information
rmconsole2-wf authored May 29, 2019
2 parents b94d11b + d82cbcc commit ef7023c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iXBRLViewerPlugin/iXBRLViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def createViewer(self, scriptUrl="js/dist/ixbrlviewer.js"):
factData["f"] = str(f.format)

if f.isNumeric:
if f.unit:
if f.unit is not None:
# XXX does not support complex units
unit = self.nsmap.qname(f.unit.measures[0][0])
aspects["u"] = unit
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='ixbrl_viewer',
version='0.1.6',
version='0.1.7',
description='The Workiva iXBRL Viewer allows iXBRL reports to be viewed interactively in a web browser',
long_description=open('README.md').read(),
url='https://github.com/workiva/ixbrl-viewer',
Expand Down

0 comments on commit ef7023c

Please sign in to comment.