Removing unused variable

This commit is contained in:
Margaret 2023-08-09 17:40:45 +03:00 committed by GitHub
parent 6ad14ebe6e
commit 84636cc08c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ def split_list(
"""
valid_timings = []
for i, current_element in enumerate(timings):
for current_element in enumerate(timings):
if (
isinstance(current_element, str)
and current_element.replace(".", "", 1).isdigit()