python-validators / validators

Python Data Validation for Humans™.
MIT License
977 stars 155 forks source link

Added validator btc addresses on format P2PKH #166

Closed ghost closed 4 years ago

ghost commented 4 years ago

Hello. Please tell me what I did wrong? Why doesn't travic-ci check?

kvesteri commented 4 years ago

@daveusa31 There are flake8 and isort errors. You can see the errors in the travis report.

ghost commented 4 years ago

I'm sorry, but I couldn't figure it out :(

kvesteri commented 4 years ago

You can check the errors locally by first installing flake8 and isort

>> pip install isort
>> pip install flake8 

The you can run the following command for isort:

>> isort --recursive --diff validators tests && isort --recursive --check-only validators tests

And for flake8

flake8 validators tests
ghost commented 4 years ago

Yeah, it works

ghost commented 4 years ago

Added