[TD-4751] removing comment for understanding the files

This commit is contained in:
bryanchang0603 2021-06-19 13:31:07 +08:00
parent a1d95323c0
commit 1226669352
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ def _convert_millisecond_to_datetime(milli):
return datetime.datetime.fromtimestamp(milli / 1000.0)
def _convert_microsecond_to_datetime(micro): #checkpoint
def _convert_microsecond_to_datetime(micro):
return datetime.datetime.fromtimestamp(micro / 1000000.0)