Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hariharan-devarajan authored Oct 3, 2024
1 parent 206ab8a commit a50c3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dfanalyzer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit a50c3f6

Please sign in to comment.