Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert isinstance(step_entry, (str, unicode)) because typing.Text is …
…actually <type 'unicode'> and as a result isinstance(str("foo"), Text) is False.
- Loading branch information
6a8d5f4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should have been
(str, Text)
asText
isstr
under Python3