-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fca2e9
commit 88dfaeb
Showing
10 changed files
with
574 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
class UnableToConnectToEmulatorException(IOError): | ||
class UnableToConnectToEmulatorException(IOError): # noqa: N818 (historic name) | ||
""" | ||
The system is unable to connect to the emulator for some reason. | ||
""" | ||
|
||
def __init__(self, emulator_name, err): | ||
def __init__(self, emulator_name: str, err: str | BaseException) -> None: | ||
super(UnableToConnectToEmulatorException, self).__init__( | ||
"Unable to connect to Emnulator {0}: {1}".format(emulator_name, err) | ||
) |
Oops, something went wrong.