Skip to content

Commit 0ce5ef4

Browse files
fix pylint
1 parent 67304b6 commit 0ce5ef4

File tree

1 file changed

+1
-4
lines changed
  • packages/aws-library/src/aws_library/ec2

1 file changed

+1
-4
lines changed

packages/aws-library/src/aws_library/ec2/_errors.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
# pylint: disable=too-many-ancestors
2-
from typing import Any
3-
42
from models_library.errors_classes import OsparcErrorMixin
53

64

75
class EC2BaseError(OsparcErrorMixin, Exception):
8-
def __init__(self, **ctx: Any) -> None:
9-
super().__init__(**ctx)
6+
pass
107

118

129
class EC2RuntimeError(EC2BaseError, RuntimeError):

0 commit comments

Comments
 (0)