Skip to content

Commit 280b3a1

Browse files
committed
Alias typing as t in imports
1 parent e380240 commit 280b3a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oidc-exchange.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import json
33
import os
44
import sys
5-
import typing
5+
import typing as t
66
from http import HTTPStatus
77
from pathlib import Path
88
from urllib.parse import urlparse
@@ -135,7 +135,7 @@
135135
""" # noqa: S105; not a password
136136

137137

138-
def die(msg: str) -> typing.NoReturn:
138+
def die(msg: str) -> t.NoReturn:
139139
with _GITHUB_STEP_SUMMARY.open('a', encoding='utf-8') as io:
140140
print(_ERROR_SUMMARY_MESSAGE.format(message=msg), file=io)
141141

0 commit comments

Comments
 (0)