Skip to content

Commit

Permalink
remove fixed schema parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ohadmata committed May 29, 2024
1 parent 2175ba1 commit 0bc770d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/read_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
init_logger()
shmessy = Shmessy()
start_time = time.time()
df = shmessy.read_csv('../tests/data/data_30.csv')
df = shmessy.read_csv('../tests/data/data_1.csv')
inferred_schema = shmessy.get_inferred_schema()
pretty_print_df(df=df, inferred_schema=inferred_schema)
print(f"Duration: {int((time.time() - start_time) * 1000)}")

0 comments on commit 0bc770d

Please sign in to comment.