Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
c3f7f82a
Commit
c3f7f82a
authored
Apr 24, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup! fixup! pylint: dummy plugin to ignore messages on python2
parent
c48d2301
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
product/ERP5Type/patches/pylint_compatibility_disable.py
product/ERP5Type/patches/pylint_compatibility_disable.py
+12
-2
No files found.
product/ERP5Type/patches/pylint_compatibility_disable.py
View file @
c3f7f82a
...
...
@@ -9,12 +9,12 @@ class CompatibilityDisableChecker(checkers.BaseChecker):
name
=
"compatibility-disable"
msgs
=
{
"E9991"
:
(
"
The raise statement is not inside an except clau
se"
,
"
misplaced-bare-rai
se"
,
"misplaced-bare-raise"
,
""
,
),
"W9992"
:
(
"
Unused private
member"
,
"
unused-private-
member"
,
"unused-private-member"
,
""
,
),
...
...
@@ -22,6 +22,16 @@ class CompatibilityDisableChecker(checkers.BaseChecker):
"using-constant-test"
,
"using-constant-test"
,
""
),
"E9994"
:
(
"modified-iterating-list"
,
'modified-iterating-list",
"",
),
"E9995": (
"unsubscriptable-object",
"unsubscriptable-object",
"",
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment