diff options
author | 2019-03-25 15:50:27 -0700 | |
---|---|---|
committer | 2019-03-25 15:50:27 -0700 | |
commit | 5c55400efc35611b6596287a2de5967e3a452e03 (patch) | |
tree | d6af343e3de61de0327270998b3855dce35cc746 /Python/pywarpx/WarpX.py | |
parent | a360e1ee72524134b6facdd18072eb0f14e08bf7 (diff) | |
download | WarpX-5c55400efc35611b6596287a2de5967e3a452e03.tar.gz WarpX-5c55400efc35611b6596287a2de5967e3a452e03.tar.zst WarpX-5c55400efc35611b6596287a2de5967e3a452e03.zip |
Updated picmi to use my_constants
Diffstat (limited to 'Python/pywarpx/WarpX.py')
-rw-r--r-- | Python/pywarpx/WarpX.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pywarpx/WarpX.py b/Python/pywarpx/WarpX.py index f58d4f111..4e4e41187 100644 --- a/Python/pywarpx/WarpX.py +++ b/Python/pywarpx/WarpX.py @@ -1,5 +1,5 @@ from .Bucket import Bucket -from .Constants import constants +from .Constants import my_constants from .Amr import amr from .Geometry import geometry from .Algo import algo @@ -18,7 +18,7 @@ class WarpX(Bucket): def create_argv_list(self): argv = [] argv += warpx.attrlist() - argv += constants.attrlist() + argv += my_constants.attrlist() argv += amr.attrlist() argv += geometry.attrlist() argv += algo.attrlist() |