tests: replace pycodestyle with black
[vpp.git] / test / vpp_papi_exceptions.py
index 2f7da96..611e5a3 100644 (file)
@@ -1,13 +1,13 @@
 class CliFailedCommandError(Exception):
-    """ cli command failed."""
+    """cli command failed."""
 
 
 class CliSyntaxError(Exception):
-    """ cli command had a syntax error."""
+    """cli command had a syntax error."""
 
 
 class UnexpectedApiReturnValueError(Exception):
-    """ exception raised when the API return value is unexpected """
+    """exception raised when the API return value is unexpected"""
 
     def __init__(self, retval, message):
         self.retval = retval