Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tests] utils: refactor type-hint signatures. #12144

Prev Previous commit
Next Next commit
[tests] use a tuple type for the utils module __all__ module declarat…
  • Loading branch information
jayaddison and chrisjsewell committed Mar 20, 2024
commit 0cbadaa0f7d6533c0db0e4e8dff93ed508a70056
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

__all__ = ["http_server"]
__all__ = ("http_server",)

from contextlib import contextmanager
from http.server import ThreadingHTTPServer
Expand Down
Loading