Skip to content

Commit 956ecf2

Browse files
committed
Typo fix
1 parent 6a96c70 commit 956ecf2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = long_description,
88
long_description_content_type = 'text/markdown',
99
packages = ['splashlab', 'splashlab.dimensional_analysis', 'splashlab.computer_vision'], # Chose the same as "name"
10-
version = 'v0.0.15', # Start with a small number and increase it with every change you make
10+
version = 'v0.0.16', # Start with a small number and increase it with every change you make
1111
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
1212
description = 'A package for fluid mechanic experimentalists', # Give a short description about your library
1313
author = 'Spencer Truman', # Type in your name

splashlab/computer_vision/image_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def read_mp4(video_file):
3333
success, frame = video.read()
3434
if success:
3535
frames.append(frame)
36-
frames = np.arrays(frames)
36+
frames = np.array(frames)
3737
return frames
3838

3939

0 commit comments

Comments
 (0)