From a50c3f602484162d98929559e490045229320dd8 Mon Sep 17 00:00:00 2001 From: Hariharan Devarajan Date: Wed, 2 Oct 2024 19:06:07 -0700 Subject: [PATCH] revert changes --- dfanalyzer/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dfanalyzer/main.py b/dfanalyzer/main.py index 3e00ef3..75421aa 100644 --- a/dfanalyzer/main.py +++ b/dfanalyzer/main.py @@ -160,7 +160,7 @@ def load_indexed_gzip_files(filename, start, end): def load_objects(line, fn, time_granularity, time_approximate, condition_fn, load_data): d = {} - if line is not None and line !="" and len(line) > 0 and "[" != line[0] and line != "\n" : + if line is not None and line !="" and len(line) > 0 and "[" != line[0] and "]" != line[0] and line != "\n" : val = {} try: unicode_line = ''.join([i if ord(i) < 128 else '#' for i in line])