Skip to content

Commit

Permalink
Fix Message type alias declaration
Browse files Browse the repository at this point in the history
Type statements are only available since Python 3.12.
  • Loading branch information
naglis committed Nov 14, 2024
1 parent cc332d6 commit 847cc30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aeneas/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import aeneas.globalfunctions as gf


type Message = str | typing.Sequence[typing.Any]
Message = str | typing.Sequence[typing.Any]


class Logger:
Expand Down

0 comments on commit 847cc30

Please sign in to comment.