Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgodbolt committed Feb 14, 2021
1 parent 95f1b6f commit 71f18f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/lib/releases.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from enum import Enum
from typing import Optional
from typing import Optional, Tuple

from attr import dataclass

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


class VersionSource(Enum):
value: Tuple[int, str]
TRAVIS = (0, 'tr')
GITHUB = (1, 'gh')

Expand Down

0 comments on commit 71f18f2

Please sign in to comment.