__init__.py 107 B

123456
  1. from pathlib import Path
  2. path = Path(__file__).parent.glob("**/*.yaml")
  3. for i in path:
  4. print(type(i))