Skip to content

Commit

Permalink
Remove __author__ from __dir__ (#9918)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Nov 15, 2024
1 parent 4a9bbf9 commit 6ada273
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES/9918.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed non-existing ``__author__`` from ``dir(aiohttp)`` -- by :user:`Dreamsorcerer`.
2 changes: 1 addition & 1 deletion aiohttp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@


def __dir__() -> Tuple[str, ...]:
return __all__ + ("__author__", "__doc__")
return __all__ + ("__doc__",)


def __getattr__(name: str) -> object:
Expand Down

0 comments on commit 6ada273

Please sign in to comment.