Skip to content

Commit 65d7afd

Browse files
committed
Docformatter black
1 parent 96142ea commit 65d7afd

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

src/vws/exceptions/cloud_reco_exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ class RequestTimeTooSkewedError(CloudRecoError):
4141
Exception raised when Vuforia returns a response with a result code
4242
'RequestTimeTooSkewed'.
4343
"""
44+

src/vws/exceptions/vws_exceptions.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class TargetStatusProcessingError(VWSError):
6363
Exception raised when Vuforia returns a response with a result code
6464
'TargetStatusProcessing'.
6565
"""
66+
6667
@property
6768
def target_id(self) -> str:
6869
"""
@@ -81,33 +82,38 @@ class DateRangeError(VWSError): # pragma: no cover
8182
Exception raised when Vuforia returns a response with a result code
8283
'DateRangeError'.
8384
"""
85+
8486
# This is not simulated by the mock.
8587
@beartype
8688
class TargetQuotaReachedError(VWSError): # pragma: no cover
8789
"""
8890
Exception raised when Vuforia returns a response with a result code
8991
'TargetQuotaReached'.
9092
"""
93+
9194
# This is not simulated by the mock.
9295
@beartype
9396
class ProjectSuspendedError(VWSError): # pragma: no cover
9497
"""
9598
Exception raised when Vuforia returns a response with a result code
9699
'ProjectSuspended'.
97100
"""
101+
98102
# This is not simulated by the mock.
99103
@beartype
100104
class ProjectHasNoAPIAccessError(VWSError): # pragma: no cover
101105
"""
102106
Exception raised when Vuforia returns a response with a result code
103107
'ProjectHasNoAPIAccess'.
104108
"""
109+
105110
@beartype
106111
class ProjectInactiveError(VWSError):
107112
"""
108113
Exception raised when Vuforia returns a response with a result code
109114
'ProjectInactive'.
110115
"""
116+
111117
@beartype
112118
class MetadataTooLargeError(VWSError):
113119
"""

0 commit comments

Comments
 (0)