From 197e31b20248cd8d518e6ef0b922d7b6161c7c45 Mon Sep 17 00:00:00 2001 From: William F Godoy <williamfgc@yahoo.com> Date: Mon, 6 Nov 2017 16:06:55 -0500 Subject: [PATCH] Fix Python Flake8 format --- examples/hello/bpWriter/helloBPWriter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/hello/bpWriter/helloBPWriter.py b/examples/hello/bpWriter/helloBPWriter.py index 1e4dd3d5d..fae66b3bc 100644 --- a/examples/hello/bpWriter/helloBPWriter.py +++ b/examples/hello/bpWriter/helloBPWriter.py @@ -24,15 +24,15 @@ adios = adios2.ADIOS(comm, adios2.DebugON) # ADIOS IO bpIO = adios.DeclareIO("BPFile_N2N") bpIO.SetEngine('BPFileWriter') -# bpIO.SetParameters( {"Threads" : "2", "ProfileUnits" : "Microseconds", +# bpIO.SetParameters( {"Threads" : "2", "ProfileUnits" : "Microseconds", #"InitialBufferSize" : "17Kb"} ) -bpIOParams = {} +bpIOParams = {} bpIOParams['Threads'] = '2' bpIOParams['ProfileUnits'] = 'Microseconds' bpIOParams['InitialBufferSize'] = '17Kb' bpIO.SetParameters(bpIOParams) -fileID = bpIO.AddTransport('File', {'Library' : 'fstream'} ) +fileID = bpIO.AddTransport('File', {'Library': 'fstream'}) # ADIOS Variable name, shape, start, offset, constant dims bpIO.DefineVariable( -- GitLab