##// END OF EJS Templates
typing: correct the signature of error.CommandError...
Matt Harbison -
r51258:3dbc7b1e stable
parent child Browse files
Show More
@@ -155,7 +155,7 b' class CommandError(Exception):'
155 """Exception raised on errors in parsing the command line."""
155 """Exception raised on errors in parsing the command line."""
156
156
157 def __init__(self, command, message):
157 def __init__(self, command, message):
158 # type: (bytes, bytes) -> None
158 # type: (Optional[bytes], bytes) -> None
159 self.command = command
159 self.command = command
160 self.message = message
160 self.message = message
161 super(CommandError, self).__init__()
161 super(CommandError, self).__init__()
General Comments 0
You need to be logged in to leave comments. Login now