Skip to content

Commit

Permalink
removed print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
dchaddock committed Feb 5, 2024
1 parent 833610e commit 7434cad
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "trex-imager-readfile"
version = "1.6.3"
version = "1.6.4"
description = "Read functions for TREx ASI raw image files"
readme = "README.md"
homepage = "https://github.com/ucalgary-aurora/trex-imager-readfile"
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_suite/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "1.6.3"
assert __version__ == "1.6.4"
2 changes: 1 addition & 1 deletion python/trex_imager_readfile/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.6.3"
__version__ = "1.6.4"

# core functions for easy use
from .blueline import read as read_blueline
Expand Down
1 change: 0 additions & 1 deletion python/trex_imager_readfile/nir.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ def read(file_list, workers=1, first_frame=False, no_metadata=False, quiet=False
for i in range(0, len(data)):
if (data[i][2] is True):
continue
print(data[i][0].shape)
total_num_frames += data[i][0].shape[2]

# pre-allocate array sizes
Expand Down

0 comments on commit 7434cad

Please sign in to comment.