Skip to content

Commit

Permalink
more python format
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonRuonanWang committed May 2, 2022
1 parent ee336a9 commit 1b2754c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/hello/datamanReader/helloDataManReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
adios = adios2.ADIOS(comm)
io = adios.DeclareIO("whatever")
io.SetEngine("DataMan")
io.SetParameters({"IPAddress":"127.0.0.1","Port":"12306","Timeout":"5"})
io.SetParameters({"IPAddress": "127.0.0.1", "Port": "12306", "Timeout": "5"})

engine = io.Open('HelloDataMan', adios2.Mode.Read, comm)

Expand Down
2 changes: 1 addition & 1 deletion examples/hello/datamanWriter/helloDataManWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
adios = adios2.ADIOS(comm)
io = adios.DeclareIO("whatever")
io.SetEngine("DataMan")
io.SetParameters({"IPAddress":"127.0.0.1","Port":"12306","Timeout":"5"})
io.SetParameters({"IPAddress": "127.0.0.1", "Port": "12306", "Timeout": "5"})

var = io.DefineVariable(
"FloatArray", floatArray, shape, start, count, adios2.ConstantDims)
Expand Down

0 comments on commit 1b2754c

Please sign in to comment.