Skip to content
Snippets Groups Projects
Commit 63536731 authored by Cédric Krier's avatar Cédric Krier :atom:
Browse files

Ensure that objects in the Pool has __slots__

issue10719
review375361002
parent 900420d1
No related branches found
No related tags found
1 merge request!114Return an empty list when the treeview has no selection
......@@ -27,6 +27,7 @@
class Effort:
__slots__ = ()
@classmethod
def __setup__(cls):
......@@ -91,7 +92,7 @@
class Progress:
__slots__ = ()
invoiced_progress = fields.One2Many('project.work.invoiced_progress',
'work', 'Invoiced Progress', readonly=True)
......@@ -208,7 +209,7 @@
class Timesheet:
__slots__ = ()
project_invoice_timesheet_up_to = fields.Date(
"Invoice up to",
states={
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment