Skip to content

Commit ef2bc41

Browse files
committed
bug fixes
1 parent 8eca377 commit ef2bc41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/plot3d/read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __read_plot3D_chunk_ASCII(f,IMAX:int,JMAX:int,KMAX:int):
6565
if i>len(tokenArray)-1:
6666
break
6767

68-
A = np.reshape(tokenArray,newshape=(KMAX,JMAX,IMAX))
68+
A = np.reshape(tokenArray,shape=(KMAX,JMAX,IMAX))
6969
A = np.transpose(A,[2,1,0])
7070
return A
7171

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "plot3d"
3-
version = "1.7.11"
3+
version = "1.7.12"
44
description = "Plot3D python utilities for reading and writing and also finding connectivity between blocks"
55
authors = ["Paht Juangphanich <paht.juangphanich@nasa.gov>"]
66

0 commit comments

Comments
 (0)