Skip to content
Snippets Groups Projects
Unverified Commit 35abbab9 authored by Steve Plimpton's avatar Steve Plimpton Committed by GitHub
Browse files

Merge pull request #835 from junghans/fix_python

lammps.py: inconsistent use of tabs and spaces in indentation
parents d358e886 62d44666
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ class lammps(object): ...@@ -110,7 +110,7 @@ class lammps(object):
# allow for int (like MPICH) or void* (like OpenMPI) # allow for int (like MPICH) or void* (like OpenMPI)
if comm: if comm:
if not lammps.has_mpi4py: if not lammps.has_mpi4py:
raise Exception('Python mpi4py version is not 2 or 3') raise Exception('Python mpi4py version is not 2 or 3')
if lammps.MPI._sizeof(lammps.MPI.Comm) == sizeof(c_int): if lammps.MPI._sizeof(lammps.MPI.Comm) == sizeof(c_int):
MPI_Comm = c_int MPI_Comm = c_int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment