Commit f1f961f2 authored by Jan-Niklas Burfeind's avatar Jan-Niklas Burfeind Committed by oroulet

feat!: Remove NotImplementedError-guard in AddressSpace

parent 443da58c
......@@ -718,9 +718,7 @@ class AddressSpace:
Note: Intended for slow devices, such as Raspberry Pi, to greatly improve start up time
"""
raise NotImplementedError
# ToDo: async friendly implementation - load all at once?
class LazyLoadingDict(collections.abc.MutableMapping):
"""
Special dict that only loads nodes as they are accessed. If a node is accessed it gets copied from the
......
......@@ -780,7 +780,6 @@ async def test_message_limits_works(restore_transport_limits_server: Server):
await n.read_value()
@pytest.mark.xfail(reason="FIXME broken", strict=True)
async def test_runTest(tmp_path: Path):
demo_shelf_file: Path = tmp_path / "some_shelf"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment