Skip to content

Commit e7ec597

Browse files
committed
comment
1 parent 173dd57 commit e7ec597

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ruff.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file follows the standards in Google Python Style Guide
66
# https://google.github.io/styleguide/pyguide.html
7-
#
7+
#
88

99
line-length = 80 # Google Style Guide §3.2: 80 columns
1010
indent-width = 4 # Google Style Guide §3.4: 4 spaces
@@ -102,7 +102,6 @@ lines-between-types = 1
102102
[lint.pydocstyle]
103103
convention = "google"
104104
ignore-decorators = ["typing.overload", "abc.abstractmethod"]
105-
ignore-var-parameters = true
106105

107106
[lint.flake8-annotations]
108107
mypy-init-return = true

src/a2a/server/context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
State = collections.abc.MutableMapping[str, typing.Any]
1212

1313

14+
# Add Comment
1415
class ServerCallContext(BaseModel):
1516
"""A context passed when calling a server method.
1617

0 commit comments

Comments
 (0)