diff --git a/src/littlefs/repl.py b/src/littlefs/repl.py index ddd706d..4f0fc34 100644 --- a/src/littlefs/repl.py +++ b/src/littlefs/repl.py @@ -65,6 +65,10 @@ def _copy_stream(src: BinaryIO, dst: BinaryIO) -> None: break dst.write(chunk) + def emptyline(self): + """Override to prevent repeating the last command.""" + pass + def do_mount(self, _: str = "") -> None: """Attempt to mount the remote filesystem.""" if self._mounted: