Skip to content

Commit df81048

Browse files
authored
Update to v0.0.7
Fixed parameter type `list` in `fexplorer-cli`.
2 parents 5f18af7 + aaa021f commit df81048

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,4 +291,4 @@ THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
291291

292292
IN NO EVENT WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY, BE LIABLE TO YOU FOR ANY DAMAGES, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
293293

294-
Again, see the included LICENSE file for specific legal details.
294+
Again, see the included LICENSE file for specific legal details.

feClient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.6"
1+
__version__ = "0.0.7"
22
__doc__ = """
33
Python client for Fusion Explorer API v{}
44
Copyright (C) 2021 Fusion Solutions KFT <contact@fusionsolutions.io>

feClient/fexplorer-cli

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ class Parameters:
7373
"int":int,
7474
"bool":self._bool,
7575
"dict":self._dict,
76+
"list":self._dict,
7677
"hex":self._hex,
7778
}.get(typ, self._any)
7879
@classmethod

0 commit comments

Comments
 (0)