Skip to content

Commit

Permalink
FIX: Fixed a TypeVar instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
s-kostyuk committed Mar 21, 2018
1 parent 8ab3188 commit bfbfdad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpl/things/capabilities/has_value.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import TypeVar, Generic, Optional

TValueType = TypeVar['TValueType']
TValueType = TypeVar('TValueType')


class HasValue(Generic[TValueType]):
Expand Down

0 comments on commit bfbfdad

Please sign in to comment.