TypeError: join() missing 1 required positional argument: 'a' os.path.join

Solution: Set the required positional argument

os.path.join(home, "adm")
os.path.join(projDir, "temp")

 

For more information:
Python | os.path.join() method