Revised the code for PEP8.

This commit is contained in:
2020-07-16 22:25:33 +08:00
parent 5b9ac93ee5
commit 42e444b8c8
3 changed files with 5 additions and 4 deletions

View File

@ -81,8 +81,7 @@ class Period:
_data_start = None
_data_end = None
def __init__(
self, spec = None, data_start = None, data_end = None):
def __init__(self, spec=None, data_start=None, data_end=None):
self._period = self.Parser(spec)
self._data_start = data_start
self._data_end = data_end