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
7950d24e
Commit
7950d24e
authored
Oct 28, 2015
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: __init__() should return None.
parent
9ecdb1c3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
product/CMFActivity/ActivityTool.py
product/CMFActivity/ActivityTool.py
+1
-1
product/ERP5/Document/BusinessTemplate.py
product/ERP5/Document/BusinessTemplate.py
+1
-1
product/ERP5Type/Tool/BaseTool.py
product/ERP5Type/Tool/BaseTool.py
+1
-1
product/ERP5Type/tests/ERP5TypeTestCase.py
product/ERP5Type/tests/ERP5TypeTestCase.py
+1
-1
No files found.
product/CMFActivity/ActivityTool.py
View file @
7950d24e
...
...
@@ -623,7 +623,7 @@ class ActivityTool (Folder, UniqueObject):
def
__init__
(
self
,
id
=
None
):
if
id
is
None
:
id
=
ActivityTool
.
id
return
Folder
.
__init__
(
self
,
id
)
Folder
.
__init__
(
self
,
id
)
# Filter content (ZMI))
def
filtered_meta_types
(
self
,
user
=
None
):
...
...
product/ERP5/Document/BusinessTemplate.py
View file @
7950d24e
...
...
@@ -1975,7 +1975,7 @@ class RegisteredVersionPrioritySelectionTemplateItem(BaseTemplateItem):
class
WorkflowTemplateItem
(
ObjectTemplateItem
):
def
__init__
(
self
,
id_list
,
tool_id
=
'portal_workflow'
,
**
kw
):
return
ObjectTemplateItem
.
__init__
(
self
,
id_list
,
tool_id
=
tool_id
,
**
kw
)
ObjectTemplateItem
.
__init__
(
self
,
id_list
,
tool_id
=
tool_id
,
**
kw
)
# When the root object of a workflow is modified, the entire workflow is
# recreated: all subobjects are discarded and must be reinstalled.
...
...
product/ERP5Type/Tool/BaseTool.py
View file @
7950d24e
...
...
@@ -64,7 +64,7 @@ class BaseTool (UniqueObject, Folder):
def
__init__
(
self
,
id
=
None
):
if
id
is
None
:
id
=
self
.
__class__
.
id
return
Folder
.
__init__
(
self
,
id
)
Folder
.
__init__
(
self
,
id
)
# Filter content (ZMI))
def
filtered_meta_types
(
self
,
user
=
None
):
...
...
product/ERP5Type/tests/ERP5TypeTestCase.py
View file @
7950d24e
...
...
@@ -1313,7 +1313,7 @@ def fortify():
def
__init__
(
self
,
value
,
*
args
,
**
kw
):
# this will raise TypeError if you try to cache a persistent object
dumps
(
value
)
return
self
.
__original_init__
(
value
,
*
args
,
**
kw
)
self
.
__original_init__
(
value
,
*
args
,
**
kw
)
CacheEntry
.
__init__
=
__init__
# randomize priorities of activities in a deterministic way
...
...
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