ashb commented on a change in pull request #20019:
URL: https://github.com/apache/airflow/pull/20019#discussion_r762081845
##########
File path: airflow/models/param.py
##########
@@ -99,16 +99,17 @@ def has_value(self) -> bool:
return not isinstance(self.value, NoValueSentinel)
-class ParamsDict(dict):
+class ParamsDict(MutableMapping):
"""
Class to hold all params for dags or tasks. All the keys are strictly
string and values
are converted into Param's object if they are not already. This class is
to replace param's
dictionary implicitly and ideally not needed to be used directly.
"""
+ __slots__ = ['__dict__', 'supresss_exception']
Review comment:
Ohhh, by making `__dict__` a slot I made it the same as having no slots
at all :D
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]