def _get_file_list()

in tfx_addons/feature_selection/component.py [0:0]


def _get_file_list(dir_path):
  file_list = [
      f for f in os.listdir(dir_path)
      if os.path.isfile(os.path.join(dir_path, f))
  ]
  return file_list