Previously the demo notebook used os.chdir() to change to the main repository path using a path string specific to ali's computer. I pushed a change that made it generic for any user:
os..path.dirname(os.path.abspath("")) # instead of os.chdir('/home/ali/packages/s2p-lbm/')
...but forgot to keep the os.chdir() part. This PR adds it back.
Previously the demo notebook used
os.chdir()
to change to the main repository path using a path string specific to ali's computer. I pushed a change that made it generic for any user:...but forgot to keep the
os.chdir()
part. This PR adds it back.