Skip to content

Commit

Permalink
Don't truncate data
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom committed Feb 6, 2024
1 parent 9a5a848 commit 6bc8e7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/prep_for_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ def main(config: str, data: str):
with open(config, "w") as f:
yaml.dump(cfg, f)

with open(data) as f:
data_truncated = f.readlines()[:2000]
with open(data, "w") as f:
f.writelines(data_truncated)
# with open(data) as f:
# data_truncated = f.readlines()[:2000]
# with open(data, "w") as f:
# f.writelines(data_truncated)


if __name__ == "__main__":
Expand Down

0 comments on commit 6bc8e7e

Please sign in to comment.