You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pertaining to the original request in #133 does it make sense to allow users to pass in custom key/val pairs to marks (via **kwargs or some other API) such that user defined collection and/or hook calling behaviour can be controlled/modified by the user based on their own inputs (maybe it's more relatable in the context of #151).
It would potentially look something like:
frompluggyimportHookspecMarkerhookspec=HookspecMarker('blah')
@hookspec(historic=True, a_special_hook=True)defmy_special_hook(arg):
"""This hook is only collected in special cases."""pass
The text was updated successfully, but these errors were encountered:
i'd like to adopt a c4.2-ish approach where we only fix things that has a direct real world impact - abstract feature requests rarely yield a usable api in th first iteration
Pertaining to the original request in #133 does it make sense to allow users to pass in custom key/val pairs to marks (via
**kwargs
or some other API) such that user defined collection and/or hook calling behaviour can be controlled/modified by the user based on their own inputs (maybe it's more relatable in the context of #151).It would potentially look something like:
The text was updated successfully, but these errors were encountered: