Skip to content

Commit

Permalink
#186 Support \dots in input formats (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuridenamida authored May 16, 2020
1 parent 6dd4966 commit 967d441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atcodertools/fmtprediction/tokenize_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def _is_ascii(s):
return all(ord(c) < 128 for c in s)


DOTS_PATTERNS = ["ldots", "cdots", "vdots", "ddots"]
DOTS_PATTERNS = ["ldots", "cdots", "vdots", "ddots", "dots"]


def _is_noise(s):
Expand Down

0 comments on commit 967d441

Please sign in to comment.