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 1232efe commit 19d80ceCopy full SHA for 19d80ce
src/labthings/utilities.py
@@ -337,18 +337,6 @@ def path_relative_to(source_file, *paths):
337
return os.path.join(os.path.abspath(os.path.dirname(source_file)), *paths)
338
339
340
-def get_class_that_defined_method(meth):
341
- """
342
-
343
- :param meth:
344
345
346
- for cls in inspect.getmro(meth.im_class):
347
- if meth.__name__ in cls.__dict__:
348
- return cls
349
- return None
350
351
352
def url_for_property(property_object: object, property_name: str):
353
"""
354
0 commit comments