Remove unncessary string type

This commit is contained in:
Patrick Barna 2023-02-09 13:48:06 -07:00
parent 89b9fde551
commit 8212c5a8a9
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ class ScenarioTemplate:
"""Get the scenario's description.
:return: The scenario description
"""
return u"\n".join(self._description_lines)
return "\n".join(self._description_lines)
@dataclass