We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2597192 commit d0134acCopy full SHA for d0134ac
cdl/core/model/image.py
@@ -199,8 +199,8 @@ class ROI2DParam(gds.DataSet):
199
_rfp = gds.FuncProp(_geometry_prop, lambda x: x is RoiDataGeometries.RECTANGLE)
200
_cfp = gds.FuncProp(_geometry_prop, lambda x: x is RoiDataGeometries.CIRCLE)
201
202
- @staticmethod
203
- def _lbl(name: str, index: int):
+ # Do not declare it as a static method: not supported on Python 3.8
+ def _lbl(name: str, index: int): # pylint: disable=no-self-argument
204
"""Returns name<sub>index</sub>"""
205
return f"{name}<sub>{index}</sub>"
206
0 commit comments