added basic documentation with pyscaffold and tox. A lot of it is probably wrong.

This commit is contained in:
Josiah Baldwin
2024-11-05 22:21:35 -08:00
parent 8dab88bfea
commit 69afbfeba7
34 changed files with 2053 additions and 725 deletions

View File

@@ -1,21 +1,17 @@
class MeshCtrlError(Exception):
"""
Base class for Meshctrl errors
"""
pass
# /** Represents an error thrown from the server
# * @extends Error
# */
class ServerError(MeshCtrlError):
"""
Represents an error thrown from the server
"""
pass
# /** Represents an error in the websocket
# * @extends Error
# */
class SocketError(MeshCtrlError):
pass
# /** Represents that a command timed out
# * @extends Error
# */
class TimeoutError(MeshCtrlError):
pass
"""
Represents an error in the websocket
"""
pass