From 6bbdccb25ffb58157a58d50648d61e46acfa2c53 Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Mon, 23 Oct 2023 16:36:13 +0200 Subject: [PATCH] pybricks.hubs.ThisHub.storage: Fix duplicate self. Fixes https://github.com/pybricks/pybricks-api/issues/146 --- src/pybricks/_common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybricks/_common.py b/src/pybricks/_common.py index ba19f07..d24cfe1 100644 --- a/src/pybricks/_common.py +++ b/src/pybricks/_common.py @@ -101,8 +101,8 @@ class System: def storage(self, offset, read=None, write=None): """ - storage(self, offset, write=) - storage(self, offset, read=) -> bytes + storage(offset, write=) + storage(offset, read=) -> bytes Reads or writes binary data to persistent storage.