Skip to content

Commit f186407

Browse files
committed
Small cleanup
1 parent bd35b4b commit f186407

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pySDC/helpers/fieldsIO.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,12 @@
4646
-------
4747
To use MPI collective writing, you need to call first the class methods :class:`Rectilinear.initMPI` (cf their docstring).
4848
Also, `Rectilinear.setHeader` **must be given the global grids coordinates**, whether the code is run in parallel or not.
49-
50-
> ⚠️ Also : this module can only be imported with **Python 3.11 or higher** !
5149
"""
5250
import os
5351
import numpy as np
5452
from typing import Type, TypeVar
5553
import logging
5654
import itertools
57-
import warnings
5855

5956
T = TypeVar("T")
6057

@@ -516,6 +513,7 @@ def setupMPI(cls, comm: MPI.Intracomm, iLoc, nLoc):
516513
cls.iLoc = iLoc
517514
cls.nLoc = nLoc
518515
cls.mpiFile = None
516+
cls._num_collective_IO = None
519517

520518
@property
521519
def num_collective_IO(self):

0 commit comments

Comments
 (0)