未验证 提交 b8cc7c6d 编写于 作者: C chenxujun 提交者: GitHub

Update CspFileReader.py (#50650)

上级 fa35dc03
...@@ -20,7 +20,7 @@ import time ...@@ -20,7 +20,7 @@ import time
from multiprocessing import Lock from multiprocessing import Lock
""" Some terms to clarify the code """ Some terms to clarify the code
in most case, one or more paremeters may be set as input args for a class or a function in most case, one or more parameters may be set as input args for a class or a function
in form of single variable or k-v dict in form of single variable or k-v dict
1. trainerId 1. trainerId
...@@ -192,7 +192,7 @@ class FileReader: ...@@ -192,7 +192,7 @@ class FileReader:
if ( if (
self._getId(self._fileList[-1]) - self._getId(self._fileList[0]) self._getId(self._fileList[-1]) - self._getId(self._fileList[0])
) != len(self._fileList) - 1: ) != len(self._fileList) - 1:
raise Exception("The file id should be countious!") raise Exception("The file id should be continuous!")
# sort # sort
def _sortBySuffix(elem): def _sortBySuffix(elem):
...@@ -344,7 +344,7 @@ class FileReader: ...@@ -344,7 +344,7 @@ class FileReader:
fileObject = open(fileName, 'w') fileObject = open(fileName, 'w')
fileObject.write(jsObj) fileObject.write(jsObj)
fileObject.close() fileObject.close()
self._logger.info("dump [%s] sucessfully!" % fileName) self._logger.info("dump [%s] successfully!" % fileName)
def getLogger(): def getLogger():
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册