Dear Lawrence,
It is easiest to figure out what is happening if you can provide a minimal example script that reproduces your problem. The screenshot is not showing your full script. Without more information,I would do something like this (hoomd v2):
hoomd.context.initialize()
sim = hoomd.context.SimulationContext()
snapshot = hoomd.data.make_snapshot(N=N, particle_types=['A','B'] box=data.boxdim(Lx=L,Ly=L,Lz=L))
# set positions, types, velocities,.. here
system = hoomd.init.read_snapshot(snapshot)
# run your simulation
You might also want to check out hoomd v3, especially if you are starting a new project since this is the stable version now.
Best,
Antonia