Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: flake8-abp/setup.py

Issue 29371619: Noissue - Fix E305 by adapting flake8-abp to use groups, run tests on Python 3.6 (Closed)
Patch Set: Created Jan. 12, 2017, 3:22 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: flake8-abp/setup.py
===================================================================
--- a/flake8-abp/setup.py
+++ b/flake8-abp/setup.py
@@ -120,10 +120,10 @@
py_modules=['flake8_abp'],
entry_points={
'flake8.extension': [
- 'A = flake8_abp:ASTChecker',
- 'A1 = flake8_abp:check_quotes',
- 'A111 = flake8_abp:check_redundant_parenthesis',
- 'A303 = flake8_abp:check_non_default_encoding',
+ 'abp.A = flake8_abp:ASTChecker',
+ 'abp.A1 = flake8_abp:check_quotes',
+ 'abp.A111 = flake8_abp:check_redundant_parenthesis',
+ 'abp.A303 = flake8_abp:check_non_default_encoding',
],
},
cmdclass={'test': TestCommand}

Powered by Google App Engine
This is Rietveld