Kyle Sunden
Kyle Sunden
Would be nice if the `internal/github` module had click actions something like "left click > $BROWSER https://github.com/notifications" and "right click > recheck number of notifications"
What is the baud rate you are trying to set? What platform are you on? (particularly interested in 32 vs 64 bit) The error makes it sound like you are...
Looking a little closer at the lines surrounding the last call in the stack, that line _shouldn't_ depend on the actual baud rate, I will also point to the comment:...
Hi, author of that `thorlabs-apt-protocol` package here. If you have any questions, feel free to ask. It is mostly just wrapping the messages in python functions to be readable/handle the...
Note that no exception is raised on write, only on read, resulting in data written by the library which cannot be read back.
@zoj613, consider using [tomli](https://pypi.org/project/tomli/) instead, as it implements the latest toml spec. Note that tomli is read only itself, but `tomli-w` is a separately installable package to do writing. Tomli...
My reading of the code indicates that with this change `atype` is not at all _used_ anywhere and so the variable can simply be removed entirely (and then also `ntype`...
https://www.python.org/dev/peps/pep-0632/ For what it is worth, distutils is actually deprecated in the upcoming python 3.10 release and will be removed from a future version.
I suspect that the `type(test_plan)` behavior will interact negatively with queueserver, which uses `inspect.isgeneratorfunction` checks to find generator functions: https://github.com/bluesky/bluesky-queueserver/blob/main/bluesky_queueserver/manager/profile_ops.py#L422-L426
One point to consider is how does this plan decorator interact with the other decorators in the ecosystem (especially preprocessors)? e.g. if I want to do `modified_grid_scan = baseline_decorator([foo, bar])(grid_scan)`,...