summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd/disabled.py
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/plugins/msd/disabled.py')
-rw-r--r--kvmd/plugins/msd/disabled.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/kvmd/plugins/msd/disabled.py b/kvmd/plugins/msd/disabled.py
index 56ed10db..5eb3083b 100644
--- a/kvmd/plugins/msd/disabled.py
+++ b/kvmd/plugins/msd/disabled.py
@@ -42,6 +42,7 @@ class Plugin(BaseMsd):
def get_state(self) -> Dict:
return {
"enabled": False,
+ "multi": False,
"online": False,
"busy": False,
"uploading": False,
@@ -56,19 +57,24 @@ class Plugin(BaseMsd):
yield self.get_state()
await asyncio.sleep(60)
+ async def reset(self) -> None:
+ raise MsdDisabledError()
+
+ # =====
+
async def connect(self) -> Dict:
raise MsdDisabledError()
async def disconnect(self) -> Dict:
raise MsdDisabledError()
- async def reset(self) -> None:
+ async def select(self, name: str) -> Dict:
raise MsdDisabledError()
- async def __aenter__(self) -> BaseMsd:
+ async def remove(self, name: str) -> Dict:
raise MsdDisabledError()
- def get_chunk_size(self) -> int:
+ async def __aenter__(self) -> BaseMsd:
raise MsdDisabledError()
async def write_image_info(self, name: str, complete: bool) -> None: