Skip to content

Commit

Permalink
removing import of dateutil
Browse files Browse the repository at this point in the history
  • Loading branch information
stringertheory committed Feb 4, 2024
1 parent f327269 commit 232b500
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions traces/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from queue import PriorityQueue

import sortedcontainers
from dateutil.parser import parse as date_parse
from infinity import inf

from . import histogram, operations, plot, utils
Expand Down Expand Up @@ -809,7 +808,9 @@ def merge(cls, ts_list, compact=True, operation=None):

@staticmethod
def csv_time_transform(raw):
return date_parse(raw)
from dateutil.parser import parse

return parse(raw)

@staticmethod
def csv_value_transform(raw):
Expand Down

0 comments on commit 232b500

Please sign in to comment.