Skip to content

Commit

Permalink
[PR #6840/934db9ab backport][3.8] Cleanup sphinx nitpicks (#6920)
Browse files Browse the repository at this point in the history
**This is a backport of PR #6840 as merged into master
(934db9a).**

None

Co-authored-by: Sam Bull <aa6bs0@sambull.org>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed Sep 20, 2022
1 parent f208741 commit 60b424b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,6 @@
("py:class", "aiohttp.SimpleCookie"), # undocumented
("py:class", "aiohttp.web.RequestHandler"), # undocumented
("py:class", "aiohttp.NamedPipeConnector"), # undocumented
("py:meth", "aiohttp.ClientSession.request"), # undocumented
("py:class", "aiohttp.protocol.HttpVersion"), # undocumented
("py:class", "aiohttp.ClientRequest"), # undocumented
("py:class", "aiohttp.payload.Payload"), # undocumented
Expand Down
4 changes: 1 addition & 3 deletions tests/test_run_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
if IS_UNIX:
with socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) as _abstract_path_sock:
try:
_abstract_path_sock.bind(
b"\x00" + uuid4().hex.encode("ascii")
)
_abstract_path_sock.bind(b"\x00" + uuid4().hex.encode("ascii"))
except FileNotFoundError:
_abstract_path_failed = True
else:
Expand Down

0 comments on commit 60b424b

Please sign in to comment.