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
141
Merge Requests
141
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
af8a727f
Commit
af8a727f
authored
Apr 09, 2024
by
Jérome Perrin
Committed by
Arnaud Fontaine
Jul 04, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*: fix some problems reported by pylint
parent
028e5a79
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
16 deletions
+21
-16
bt5/erp5_base/DocumentTemplateItem/portal_components/document.erp5.SimulatedDeliveryBuilder.py
...rtal_components/document.erp5.SimulatedDeliveryBuilder.py
+0
-1
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.EmailDocument.py
...lateItem/portal_components/document.erp5.EmailDocument.py
+5
-3
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.File.py
...umentTemplateItem/portal_components/document.erp5.File.py
+1
-2
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.FolderWorkflowActionUtils.py
...al_components/extension.erp5.FolderWorkflowActionUtils.py
+0
-1
product/ERP5/bootstrap/erp5_core/MixinTemplateItem/portal_components/mixin.erp5.BaseConvertableFileMixin.py
.../portal_components/mixin.erp5.BaseConvertableFileMixin.py
+0
-1
product/ERP5/bootstrap/erp5_core/MixinTemplateItem/portal_components/mixin.erp5.BaseExtensibleTraversableMixin.py
...l_components/mixin.erp5.BaseExtensibleTraversableMixin.py
+2
-0
product/ERP5/bootstrap/erp5_core/ModuleComponentTemplateItem/portal_components/module.erp5.MovementGroup.py
...mplateItem/portal_components/module.erp5.MovementGroup.py
+0
-1
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.DiffTool.py
...onentTemplateItem/portal_components/tool.erp5.DiffTool.py
+3
-0
product/PortalTransforms/utils.py
product/PortalTransforms/utils.py
+5
-4
product/Zelenium/generator.py
product/Zelenium/generator.py
+5
-3
No files found.
bt5/erp5_base/DocumentTemplateItem/portal_components/document.erp5.SimulatedDeliveryBuilder.py
View file @
af8a727f
...
...
@@ -99,7 +99,6 @@ class SimulatedDeliveryBuilder(BuilderMixin):
Redefine this method, because it seems nothing interesting can be
done before building Delivery.
"""
pass
security
.
declarePrivate
(
'searchMovementList'
)
@
UnrestrictedMethod
...
...
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.EmailDocument.py
View file @
af8a727f
...
...
@@ -48,10 +48,12 @@ except ImportError:
not installed yet.
"""
if
six
.
PY2
:
from
email
import
message_from_string
as
message_from_bytes
else
:
# pylint:disable=no-name-in-module
if
six
.
PY3
:
from
email
import
message_from_bytes
else
:
from
email
import
message_from_string
as
message_from_bytes
# pylint:enable=no-name-in-module
from
email.utils
import
parsedate_tz
,
mktime_tz
...
...
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.File.py
View file @
af8a727f
...
...
@@ -27,7 +27,6 @@
#
##############################################################################
import
six
from
AccessControl
import
ClassSecurityInfo
from
Products.ERP5Type.Base
import
WorkflowMethod
from
Products.ERP5Type
import
Permissions
,
PropertySheet
...
...
@@ -154,7 +153,7 @@ class File(Document, OFS_File):
security
.
declarePrivate
(
'update_data'
)
def
update_data
(
self
,
*
args
,
**
kw
):
super
(
File
,
self
).
update_data
(
*
args
,
**
kw
)
if
six
.
PY2
and
isinstance
(
self
.
size
,
long
):
if
six
.
PY2
and
isinstance
(
self
.
size
,
long
):
# pylint:disable=undefined-variable
self
.
size
=
int
(
self
.
size
)
security
.
declareProtected
(
Permissions
.
ModifyPortalContent
,
'setFile'
)
...
...
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.FolderWorkflowActionUtils.py
View file @
af8a727f
...
...
@@ -29,7 +29,6 @@
import
six
from
past.builtins
import
cmp
from
hashlib
import
md5
# Some workflow does not make sense in the context of mass transition and are
...
...
product/ERP5/bootstrap/erp5_core/MixinTemplateItem/portal_components/mixin.erp5.BaseConvertableFileMixin.py
View file @
af8a727f
...
...
@@ -33,7 +33,6 @@ from Products.ERP5Type.Message import translateString
from
Products.ERP5Type
import
Permissions
from
OFS.Image
import
Pdata
from
io
import
BytesIO
import
six
_MARKER
=
object
()
class
BaseConvertableFileMixin
:
...
...
product/ERP5/bootstrap/erp5_core/MixinTemplateItem/portal_components/mixin.erp5.BaseExtensibleTraversableMixin.py
View file @
af8a727f
...
...
@@ -29,10 +29,12 @@
from
warnings
import
warn
import
six
# pylint:disable=no-name-in-module
if
six
.
PY2
:
from
base64
import
decodestring
as
decodebytes
else
:
from
base64
import
decodebytes
# pylint:enable=no-name-in-module
from
zLOG
import
LOG
from
AccessControl
import
ClassSecurityInfo
,
getSecurityManager
...
...
product/ERP5/bootstrap/erp5_core/ModuleComponentTemplateItem/portal_components/module.erp5.MovementGroup.py
View file @
af8a727f
...
...
@@ -31,7 +31,6 @@
from
collections
import
OrderedDict
from
warnings
import
warn
from
Products.PythonScripts.Utility
import
allow_class
from
Products.ERP5Type.Utils
import
ensure_list
class
MovementGroupNode
:
...
...
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.DiffTool.py
View file @
af8a727f
...
...
@@ -28,10 +28,13 @@
##############################################################################
import
six
# pylint:disable=no-name-in-module,import-error
if
six
.
PY3
:
from
collections.abc
import
Set
else
:
from
collections
import
Set
# pylint:enable=no-name-in-module,import-error
import
difflib
import
warnings
try
:
...
...
product/PortalTransforms/utils.py
View file @
af8a727f
...
...
@@ -4,11 +4,12 @@
import
io
import
six
if
six
.
PY2
:
from
email
import
message_from_string
as
message_from_bytes
else
:
# pylint:disable=no-name-in-module
if
six
.
PY3
:
from
email
import
message_from_bytes
else
:
from
email
import
message_from_string
as
message_from_bytes
# pylint:enable=no-name-in-module
class
TransformException
(
Exception
):
pass
...
...
product/Zelenium/generator.py
View file @
af8a727f
...
...
@@ -12,10 +12,12 @@ import glob
import
cgi
from
six.moves
import
urllib
import
multifile
if
six
.
PY2
:
from
email
import
message_from_file
as
message_from_bytes
else
:
# pylint:disable=no-name-in-module
if
six
.
PY3
:
from
email
import
message_from_bytes
else
:
from
email
import
message_from_string
as
message_from_bytes
# pylint:enable=no-name-in-module
_TEST_CASE_HEADER
=
"""
\
<html>
...
...
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