We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In [4]: APS_utils.replay(db[-1], handler) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-4-731a69b7fda4> in <module> ----> 1 APS_utils.replay(db[-1], handler) /share1/bluesky/conda_envs/bluesky/lib/python3.7/site-packages/apstools/utils.py in replay(headers, callback) 362 if not isinstance(h, databroker.Header): 363 emsg = f"Must be a databroker Header: received: {type(h)}: |{h}|" --> 364 raise TypeError(emsg) 365 cmd = _rebuild_scan_command(h.start) 366 logger.debug(f"{cmd}") TypeError: Must be a databroker Header: received: <class 'str'>: |start|
The text was updated successfully, but these errors were encountered:
But this works: APS_utils.replay([db[-1]], handler)
APS_utils.replay([db[-1]], handler)
Sorry, something went wrong.
FIX #216
13e805f
prjemian
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: