Skip to content

Commit

Permalink
Fix compatibility with Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dcermak committed Jul 24, 2024
1 parent 496c409 commit 60a8993
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/opensuse_distro_aliases/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from typing import Dict
from typing import List
from typing import Literal
from typing import Optional
from typing import TypedDict
from typing import Union

Expand All @@ -25,7 +26,7 @@ class Distro:
namever: str

#: main project on build.opensuse.org from which this distribution is built
obs_project_name: str | None
obs_project_name: Optional[str]


class _Release(TypedDict):
Expand Down

0 comments on commit 60a8993

Please sign in to comment.