_utils_internal.py 207 B

1234567
  1. import os
  2. # Get relative file path
  3. # this returns relative path from current file.
  4. def get_relative_path(curr_file, *path_components):
  5. return os.path.join(os.path.dirname(curr_file), *path_components)