Skip to content

Commit 71f18f2

Browse files
committed
Fix lint
Thanks pylint-dev/pylint#2063
1 parent 95f1b6f commit 71f18f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/lib/releases.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from enum import Enum
2-
from typing import Optional
2+
from typing import Optional, Tuple
33

44
from attr import dataclass
55

@@ -16,6 +16,7 @@ def __str__(self):
1616

1717

1818
class VersionSource(Enum):
19+
value: Tuple[int, str]
1920
TRAVIS = (0, 'tr')
2021
GITHUB = (1, 'gh')
2122

0 commit comments

Comments
 (0)