Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tchaton committed Jan 14, 2025
1 parent 019729e commit c513f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/litdata/streaming/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def _apply_delete(self, chunk_index: int) -> None:
locak_chunk_path = chunk_filepath + ".lock"
if os.path.exists(locak_chunk_path):
os.remove(locak_chunk_path)
except:
except FileNotFoundError:
pass

def stop(self) -> None:
Expand Down

0 comments on commit c513f0a

Please sign in to comment.