Revision 13dd590b498fc066241032646eaca73f94ab68fa authored by Tom Hu on 24 November 2016, 14:15:11 UTC, committed by GitHub on 24 November 2016, 14:15:11 UTC
`words` is a list containing separated words. Thus, it should not be passed into `is_url()` as a string.
1 parent dc13a39
Raw File
setup.cfg
[aliases]
test = pytest

[check-manifest]
ignore =
  .travis.yml
  circle.yml
  violations.flake8.txt

[flake8]
ignore = E111,E124,E126,E201,E202,E221,E241,E302,E501

[pep8]
ignore = E111,E124,E126,E128,E201,E202,E221,E226,E241,E301,E302,E303,E402,E501,W291
max-line-length = 160
back to top