Skip to content

Commit

Permalink
fix type alias from python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamilcuk committed Jul 15, 2024
1 parent 75ecf6d commit 609496c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nomad_tools/entry_githubrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ class GithubCache:
https://docs.github.com/en/rest/using-the-rest-api/best-practices-for-using-the-rest-api?apiVersion=2022-11-28#use-conditional-requests-if-appropriate
"""

type Url = str
Url = str

@dataclass
class Value:
Expand Down Expand Up @@ -539,7 +539,7 @@ def gh_get_cached(url: str, key: str = ""):
###############################################################################
# github high level

type GithubRepo = str
GithubRepo = str


@dataclass(frozen=True)
Expand Down

0 comments on commit 609496c

Please sign in to comment.