Skip to content

Commit 255c9b0

Browse files
committed
nixos-rebuild-ng: TypeAlias -> type
1 parent 51a9200 commit 255c9b0

File tree

1 file changed

+2
-2
lines changed
  • pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild

1 file changed

+2
-2
lines changed

pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import logging
22
from collections.abc import Mapping, Sequence
3-
from typing import Any, TypeAlias, assert_never, override
3+
from typing import Any, assert_never, override
44

5-
Args: TypeAlias = bool | str | list[str] | int | None
5+
type Args = bool | str | list[str] | int | None
66

77

88
class LogFormatter(logging.Formatter):

0 commit comments

Comments
 (0)