diff options
author | 2017-03-23 10:52:24 -0700 | |
---|---|---|
committer | 2017-03-23 10:52:24 -0700 | |
commit | af4888597d8cc025bb4324f9af0a1f04777fe31a (patch) | |
tree | c11a2ceaa5239b81c322ecbd9d5890f5735800a1 /Python | |
parent | be393aed49accfbbb3180dc5868d195f5cd75af9 (diff) | |
parent | 01cda1142a6a27a53ad41428d4461c8c28e8356e (diff) | |
download | WarpX-af4888597d8cc025bb4324f9af0a1f04777fe31a.tar.gz WarpX-af4888597d8cc025bb4324f9af0a1f04777fe31a.tar.zst WarpX-af4888597d8cc025bb4324f9af0a1f04777fe31a.zip |
Merge branch 'master' into python-ctypes
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pywarpx/WarpX.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/pywarpx/WarpX.py b/Python/pywarpx/WarpX.py index 976d94c74..e9ec7cca4 100644 --- a/Python/pywarpx/WarpX.py +++ b/Python/pywarpx/WarpX.py @@ -2,6 +2,9 @@ from .Bucket import Bucket from . import warpxC class WarpX(Bucket): + """ + A Python wrapper for the WarpX C++ class + """ def init(self): self.warpx = warpxC.WarpX.GetInstance() |