Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck committed Oct 10, 2023
1 parent 81e7e7e commit b157cf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cyclonedx/model/license.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Copyright (c) OWASP Foundation. All Rights Reserved.

import warnings
from typing import Any, Optional, TypeAlias, Union
from typing import Any, Optional, Union

import serializable
from sortedcontainers import SortedSet
Expand Down Expand Up @@ -185,7 +185,7 @@ def __repr__(self) -> str:
return f'<LicenseExpression value={self._value!r}>'


LicenseChoice: TypeAlias = Union[LicenseExpression, DisjunctiveLicense]
LicenseChoice = Union[LicenseExpression, DisjunctiveLicense]


class LicenseRepository(SortedSet[LicenseChoice]):
Expand Down

0 comments on commit b157cf5

Please sign in to comment.