change: convert lst.0.name to lst[0].name

This commit is contained in:
debugtalk
2020-05-29 11:16:43 +08:00
parent 0b8d2b1471
commit 45a5f1c37c
3 changed files with 14 additions and 6 deletions

View File

@@ -40,11 +40,11 @@ class FileFormatError(MyBaseError):
pass
class TestCaseFormatError(MyBaseError):
class TestCaseFormatError(FileFormatError):
pass
class TestSuiteFormatError(MyBaseError):
class TestSuiteFormatError(FileFormatError):
pass