Skip to content

Commit

Permalink
Fix another use of Literal
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Jan 18, 2020
1 parent c5cf7d3 commit fa0edf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chess/pgn.py
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ def end_headers(self) -> SkipType:
def begin_variation(self) -> SkipType:
return SKIP

def result(self) -> Literal[True]:
def result(self) -> "typing.Literal[True]":
return True


Expand Down

0 comments on commit fa0edf8

Please sign in to comment.