Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jooste committed Sep 2, 2024
1 parent 273fb48 commit ea91e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluesky/core/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def select(cls, instance=None):
target = cls

for name, fobj in target.__func_objects__.items():
if not inspect.ismethod(fobj.func):
if not inspect.ismethod(fobj.func): # TODO: doesn't this disallow e.g., selecting different stack function implementations?
fobj.update(getattr(target, name, None))

@classmethod
Expand Down

0 comments on commit ea91e90

Please sign in to comment.