Unverified Commit dc493b1b authored by guoshzhao's avatar guoshzhao Committed by GitHub
Browse files

fix bug when convert Enum.value to string (#29)


Co-authored-by: default avatarGuoshuai Zhao <guzhao@microsoft.com>
parent 91b44bc5
......@@ -16,7 +16,7 @@ def get_values(cls):
def __str__(self):
"""Value as the string."""
return self.value
return str(self.value)
class Platform(Enum):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment