Skip to content

Commit

Permalink
Fix VersionInfo naming
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Oct 3, 2022
1 parent 5a6955a commit 6aca916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

from collections import namedtuple
_VersionInfo = namedtuple('VersionInfo', ('major', 'minor', 'micro')) # type: ignore[name-match]
_VersionInfo = namedtuple('_VersionInfo', ('major', 'minor', 'micro'))
from .executing import Source, Executing, only, NotOneValueFound, cache, future_flags
try:
from .version import __version__ # type: ignore[import]
Expand Down

0 comments on commit 6aca916

Please sign in to comment.