From b111b15c12bb89c49006ea13d20435d2022db23a Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 11 Jan 2022 11:09:08 +0100 Subject: [PATCH] Refs #30141 -- Removed unused branch in parse_duration(). Unused since 99fc5dc13c12d874ffc1c8f47a6421494e720b31. --- django/utils/dateparse.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/utils/dateparse.py b/django/utils/dateparse.py index e2a806c8e8..a137031b3f 100644 --- a/django/utils/dateparse.py +++ b/django/utils/dateparse.py @@ -149,8 +149,6 @@ def parse_duration(value): sign = -1 if kw.pop('sign', '+') == '-' else 1 if kw.get('microseconds'): kw['microseconds'] = kw['microseconds'].ljust(6, '0') - if kw.get('seconds') and kw.get('microseconds') and kw['seconds'].startswith('-'): - kw['microseconds'] = '-' + kw['microseconds'] kw = {k: float(v.replace(',', '.')) for k, v in kw.items() if v is not None} days = datetime.timedelta(kw.pop('days', .0) or .0) if match.re == iso8601_duration_re: