Results 136 comments of Raphael Nestler

I guess @dbrgn wants to detect a NACK not for scanning for the presence of devices, but to wait until the device is ready. Some devices (most of Sensirions sensors...

Looking into the source I saw that one can pass a `shelf_file` to `init`: https://github.com/FreeOpcUa/opcua-asyncio/blob/f2f7722d945dbbc04ab20a87f6aff17496f7edf1/asyncua/server/server.py#L107 and then passed to https://github.com/FreeOpcUa/opcua-asyncio/blob/f2f7722d945dbbc04ab20a87f6aff17496f7edf1/asyncua/server/address_space.py#L698 which writes the shelf file. But on the second run...

Changing the `List` annotations to `list` fixes it.

Ah I just noticed that this project uses git-flow workflow with develop as the development branch. I'll rebase this on develop and change the target branch. Is there any reason...

Since I had unexpected hover effects everywhere where I have an `on-click` definition after upgrading to 0.9.15 I guess this is now fixed :slightly_smiling_face:

> That helps only if you want to add the component in the same library as the symbol resides, but often that's not the case. Isn't it the 90% case...

> * `pys` - session-scoped Pylenium instance > * `pyc` - class-scoped Pylenium instance > What do you think? Sounds reasonable and useful :slightly_smiling_face:

If you also have rubocop configured to warn about `Rails/ReversibleMigration: change_column is not reversible.` one can use the following for the migration: ```ruby class ChangeFlipperGatesValueToText < ActiveRecord::Migration[7.0] def up change_column...

Well it worked at some point, but then got removed again since it caused issues. Maybe it would be worth to create a new feature request for it?

One could change this to be an enum with `String` and `u16` to smooth out the transition: Warn if the user provided a string but still allow it. This would...