Skip to content

Commit

Permalink
Merge pull request #15 from Textualize/fix38
Browse files Browse the repository at this point in the history
fix Py38 typing
  • Loading branch information
willmcgugan authored Feb 12, 2024
2 parents cedd01c + 63df3ee commit 7e05281
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/toolong/cli.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from importlib.metadata import version
import click

Expand Down
2 changes: 1 addition & 1 deletion src/toolong/format_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from typing import Optional


ParseResult: TypeAlias = tuple[Optional[datetime], str, Text]
ParseResult: TypeAlias = "tuple[Optional[datetime], str, Text]"


class LogFormat:
Expand Down

0 comments on commit 7e05281

Please sign in to comment.