Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder authored Jan 2, 2024
1 parent 21be9ec commit 9483d2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lxml-stubs/etree.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,9 @@ class _Attrib:
def __getitem__(self, key: _AnyStr) -> _AnyStr: ...
def __bool__(self) -> bool: ...
def __len__(self) -> int: ...
def get(self, key: _AnyStr, default: Optional[_AnyStr] = ...) -> Optional[_AnyStr]: ...
def get(
self, key: _AnyStr, default: Optional[_AnyStr] = ...
) -> Optional[_AnyStr]: ...
def keys(self) -> _ListAnyStr: ...
def __iter__(self) -> Iterator[_AnyStr]: ... # actually _AttribIterator
def iterkeys(self) -> Iterator[_AnyStr]: ...
Expand Down

0 comments on commit 9483d2f

Please sign in to comment.