Skip to content

Commit 2affe90

Browse files
committed
fix typo in kwargs for polars read_csv, thanks to @icdh99
1 parent 7ada950 commit 2affe90

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

enformer_pytorch/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def __init__(
186186
bed_path = Path(bed_file)
187187
assert bed_path.exists(), 'path to .bed file must exist'
188188

189-
df = pl.read_csv(str(bed_path), sep = '\t', has_headers = False)
189+
df = pl.read_csv(str(bed_path), sep = '\t', has_header = False)
190190
df = filter_df_fn(df)
191191
self.df = df
192192

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name = 'enformer-pytorch',
55
packages = find_packages(exclude=[]),
66
include_package_data = True,
7-
version = '0.6.0',
7+
version = '0.6.1',
88
license='MIT',
99
description = 'Enformer - Pytorch',
1010
author = 'Phil Wang',

0 commit comments

Comments
 (0)