We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b1918a commit 34b708aCopy full SHA for 34b708a
src/a2a/pydantic_base.py
@@ -14,7 +14,7 @@ class A2ABaseModel(BaseModel):
14
populate_by_name=True,
15
)
16
17
- def __getattr__(self, name: str) -> Any:
+ def __getattr__(self, name: str) -> Any: # noqa: D105
18
snake = to_snake(name)
19
if hasattr(self, snake):
20
return getattr(self, snake)
0 commit comments