Skip to content

Commit

Permalink
move files in a sub directory into config/yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
BaseMax committed Jan 8, 2025
1 parent 5f06442 commit d5f1510
Show file tree
Hide file tree
Showing 34 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
config/json/**
config/.mypy_cache
.mypy_cache
config/module/__pycache__
# config/*.yaml
# config/**/*.yaml

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added config/tags/li.py
Empty file.
Empty file added config/tags/ul.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added config/yaml/layout/__init__.py
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../module"))
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../../module"))
)

from module.utils import error, load_yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../module"))
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../../module"))
)

from module.utils import error, load_yaml
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../module"))
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../../module"))
)

from module.utils import error, load_yaml
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../module"))
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../../module"))
)

from module.utils import error, load_yaml
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), "../..", "module"))
os.path.abspath(os.path.join(os.path.dirname(__file__), "../../..", "module"))
)

from module.utils import error, load_yaml
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added config/yaml/layout/py.typed
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d5f1510

Please sign in to comment.