Skip to content

Commit 8f62396

Browse files
committed
Modernize and bump version
Remove a bunch of readability-hampering extraneous support for the deprecated Python 2 Change flynt-able strings to f-strings manually? convert stuff to f-string modify pylintrc to make method-rgx not scream at __init__ replace deprecated assertEquals()s with assertEqual()s
1 parent a80d21c commit 8f62396

File tree

3 files changed

+517
-605
lines changed

3 files changed

+517
-605
lines changed

.pylintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[BASIC]
22
include-naming-hint=yes
3-
method-rgx=[A-Z_][A-Za-z0-9]{2,49}$
4-
function-rgx=[A-Z_][A-Za-z0-9]{2,49}$|main|unicode_escape_decode
3+
method-rgx=[A-Z_][A-Za-z0-9]{2,49}$|__init__
4+
function-rgx=[A-Z_][A-Za-z0-9]{2,49}$|main
55
const-rgx=[a-zA-Z_][A-Za-z0-9_]{2,49}$
66
variable-rgx=[a-z_][a-z0-9_]{0,49}$
77
argument-rgx=[a-z_][a-z0-9_]{0,49}$

0 commit comments

Comments
 (0)