Skip to content

Commit

Permalink
Undo ValidOption lowercasing
Browse files Browse the repository at this point in the history
  • Loading branch information
vinhowe committed May 19, 2023
1 parent 08e9bb5 commit 7e7adef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lm_survey/survey/question.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def __init__(
text: typing.Optional[str] = None,
natural_language: typing.Optional[str] = None,
) -> None:
self.raw = raw.lower()
self.text = text.lower()
self.raw = raw
self.text = text
self.natural_language = natural_language

def to_dict(self) -> typing.Dict[str, typing.Optional[str]]:
Expand Down

0 comments on commit 7e7adef

Please sign in to comment.