mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
tools/pyboard.py: Change base class of PyboardError to Exception.
Following standard practice for defining custom exceptions.
This commit is contained in:
committed by
Damien George
parent
c1c798fbc3
commit
5ed8226e02
@@ -81,7 +81,7 @@ def stdout_write_bytes(b):
|
||||
stdout.write(b)
|
||||
stdout.flush()
|
||||
|
||||
class PyboardError(BaseException):
|
||||
class PyboardError(Exception):
|
||||
pass
|
||||
|
||||
class TelnetToSerial:
|
||||
|
||||
Reference in New Issue
Block a user