Skip to content

Commit 20769e4

Browse files
author
Yan Gobeil
committed
fix typo in split_train
1 parent ebaf21b commit 20769e4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

decathlonian/utils/data_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def create_dir(path):
7676
Arguments:
7777
path (str): path to directory to create
7878
"""
79-
if not os.path.existspath():
79+
if not os.path.exists(path):
8080
os.mkdir(path)
8181

8282

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="decathlonian",
10-
version="1.1.0",
10+
version="1.1.1",
1111
author="Décathlon Canada",
1212
author_email="sportvisionapi@decathlon.com",
1313
description="A package to easily train powerful image classification models using colab's free TPUs.",
@@ -16,6 +16,9 @@
1616
in Google colab notebooks. You can find the full documentation
1717
[here](https://decathlonian-doc.herokuapp.com/)
1818
19+
## Version 1.1.1
20+
Fix typo in split_train
21+
1922
## Version 1.1.0
2023
Remove google scraping
2124

0 commit comments

Comments
 (0)