Skip to content

Commit 2beee12

Browse files
committed
remove unnecessary __init__
1 parent 6958555 commit 2beee12

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

aries_cloudcontroller/model/service_decorator.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,6 @@ class ServiceDecorator(BaseModel):
2525
service_endpoint: Optional[str] = Field(None, alias="serviceEndpoint")
2626
routing_keys: Optional[List[str]] = Field(None, alias="routingKeys")
2727

28-
def __init__(
29-
self,
30-
*,
31-
recipient_keys: Optional[List[str]] = None,
32-
service_endpoint: Optional[str] = None,
33-
routing_keys: Optional[List[str]] = None,
34-
**kwargs,
35-
):
36-
super().__init__(
37-
recipient_keys=recipient_keys,
38-
routing_keys=routing_keys,
39-
service_endpoint=service_endpoint,
40-
**kwargs,
41-
)
42-
4328
class Config:
4429
allow_population_by_field_name = True
4530

0 commit comments

Comments
 (0)