A loose federation of distributed, typed datasets
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26 from foundation-ac/release/v0.1.3b2

quick fix to remove erroneous print statements

authored by

Maxine Levesque and committed by
GitHub
88d85aac 867a9c70

+2 -2
+1 -1
pyproject.toml
··· 1 1 [project] 2 2 name = "atdata" 3 - version = "0.1.3b1" 3 + version = "0.1.3b2" 4 4 description = "A loose federation of distributed, typed datasets" 5 5 readme = "README.md" 6 6 authors = [
+1 -1
src/atdata/dataset.py
··· 118 118 119 119 # Directly an NDArray 120 120 if t == NDArray: 121 - print( 'is an NDArray' ) 121 + # print( 'is an NDArray' ) 122 122 return True 123 123 124 124 # Check for Optionals (i.e., NDArray | None)