Skip to content
This repository has been archived by the owner on Jun 5, 2019. It is now read-only.

preliminary: TrezorClient split #276

Merged
merged 17 commits into from
Sep 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ ignore =
# E722: do not use bare except
E722,
# E741: ambiguous variable name
E741
E741,
##### E266: too many leading '#' for block comment
E266,
# W503 line break before binary operator
W503,
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ requests>=2.4.0
click>=6.2
pyblake2>=0.9.3
libusb1>=1.6.4
construct>=2.9
pip>=6
typing>=3.0.0; python_version < '3.5'
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
'click>=6.2',
'pyblake2>=0.9.3',
'libusb1>=1.6.4',
'construct>=2.9',
]

CWD = os.path.dirname(os.path.realpath(__file__))
Expand Down
Loading