Removed the now-unused error decorated @property from Period in the accounting application.

This commit is contained in:
依瑪貓 2020-08-03 22:00:41 +08:00
parent c2b9cdbeed
commit 512fd35adc

View File

@ -82,16 +82,6 @@ class Period:
""" """
return self._period.description return self._period.description
@property
def error(self):
"""Returns the error of the period specification format.
Returns:
str|None: The error of the period specification format, or None on
success.
"""
return self._period.error
@staticmethod @staticmethod
def _get_last_month_start(): def _get_last_month_start():
"""Returns the first day of the last month. """Returns the first day of the last month.
@ -419,8 +409,6 @@ class Period:
start (datetime.date): The start of the period. start (datetime.date): The start of the period.
end (datetime.date): The end of the period. end (datetime.date): The end of the period.
description (str): The text description of the period. description (str): The text description of the period.
error (str): The period specification format error, or
None on success.
""" """
VERY_START = datetime.date(1990, 1, 1) VERY_START = datetime.date(1990, 1, 1)
@ -429,7 +417,6 @@ class Period:
self.start = None self.start = None
self.end = None self.end = None
self.description = None self.description = None
self.error = None
if spec is None: if spec is None:
self._set_this_month() self._set_this_month()