pylint fixes

This commit is contained in:
PyryL 2022-12-12 19:48:53 +02:00
parent 59bfc7fb84
commit 45770f1237

View File

@ -219,7 +219,7 @@ class FixedDate:
difference = self.date - other.date difference = self.date - other.date
greg_leap_days = gregorian_leap_days_between(self.date, other.date) greg_leap_days = gregorian_leap_days_between(self.date, other.date)
fixed_leap_days = fixed_leap_days_between(self.date, other.date) fixed_leap_days = fixed_leap_days_between(self.date, other.date)
return difference - datetime.timedelta(greg_leap_days) + datetime.timedelta(fixed_leap_days) return difference + datetime.timedelta(fixed_leap_days - greg_leap_days)
if isinstance(other, datetime.timedelta): if isinstance(other, datetime.timedelta):
new_date = self.date - other new_date = self.date - other
return FixedDate(date=new_date) return FixedDate(date=new_date)