Skip to content

Commit

Permalink
minor: type hinting
Browse files Browse the repository at this point in the history
  • Loading branch information
arogozhnikov committed Sep 10, 2021
1 parent 3156a42 commit d3d9da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion einops/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import warnings
from typing import List

_ellipsis = '…' # NB, this is a single unicode symbol. String is used as it is not a list, but can be iterated
_ellipsis: str = '…' # NB, this is a single unicode symbol. String is used as it is not a list, but can be iterated


class AnonymousAxis(object):
Expand Down

0 comments on commit d3d9da7

Please sign in to comment.