Skip to content

Commit

Permalink
#526 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Sep 22, 2023
1 parent 0b0a515 commit 8872932
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arekit/common/opinions/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ def __init__(self, source_value, target_value, label):
assert(isinstance(source_value, str))
assert(isinstance(target_value, str))
assert(isinstance(label, Label))
self.__source_value = source_value.lower()
self.__target_value = target_value.lower()
self.__source_value = source_value
self.__target_value = target_value
self.__label = label
self.__tag = None

Expand Down

0 comments on commit 8872932

Please sign in to comment.