Skip to content

Commit

Permalink
feat!: Remove NotImplementedError-guard in AddressSpace
Browse files Browse the repository at this point in the history
  • Loading branch information
AiyionPrime authored and oroulet committed Feb 21, 2024
1 parent 443da58 commit f1f961f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions asyncua/server/address_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,9 +718,7 @@ def load_aspace_shelf(self, path: Path):
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
Expand Down
1 change: 0 additions & 1 deletion tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit f1f961f

Please sign in to comment.