Bazel: fix typo

This commit is contained in:
Paolo Tranquilli
2024-08-07 20:54:40 +02:00
parent 58088b62df
commit e451f2b343

View File

@@ -34,7 +34,7 @@ def options():
class Endpoint:
name: str
href: str
ssh: typing.Opional[str] = None
ssh: typing.Optional[str] = None
headers: typing.Dict[str, str] = dataclasses.field(default_factory=dict)
def update_headers(self, d: typing.Iterable[typing.Tuple[str, str]]):