Closed mattpitkin closed 2 years ago
Thanks Matt! As a matter of process, if you merge mattpitkin:black (now merged) or vallis:master into this branch, then the tests should succeed and then I can merge this.
Thanks. I've now merged the black fixes into this MR.
Currently,
find_tempo2_runtime
first checks a path within your home directory for the tempo2 runtime location, assuming the theHOME
variable is a value. However, if running libstempo on a cluster node it is not necessarily the case thatHOME
is set, which means that it could beNone
. In this case thePath(HOME)
command will fail with aTypeError
. This minor fix only checks the local path isHOME
is not aNone
-type.