We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
typing as t
1 parent e380240 commit 280b3a1Copy full SHA for 280b3a1
1 file changed
oidc-exchange.py
@@ -2,7 +2,7 @@
2
import json
3
import os
4
import sys
5
-import typing
+import typing as t
6
from http import HTTPStatus
7
from pathlib import Path
8
from urllib.parse import urlparse
@@ -135,7 +135,7 @@
135
""" # noqa: S105; not a password
136
137
138
-def die(msg: str) -> typing.NoReturn:
+def die(msg: str) -> t.NoReturn:
139
with _GITHUB_STEP_SUMMARY.open('a', encoding='utf-8') as io:
140
print(_ERROR_SUMMARY_MESSAGE.format(message=msg), file=io)
141
0 commit comments