Skip to content

Commit

Permalink
Fix cli module not found error (#91)
Browse files Browse the repository at this point in the history
* Add missing __init__.py to transformers_cfg/cli to ensure proper module inclusion

- Added an empty __init__.py file to the transformers_cfg/cli directory.
- This ensures that the cli module is recognized as part of the package during distribution.

* v0.2.6
  • Loading branch information
Saibo-creator authored Sep 8, 2024
1 parent 0b56f70 commit f259efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ examples/jupyter
profiling
debug
dev
git_diff.txt
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
2 changes: 1 addition & 1 deletion transformers_cfg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

setup_logging()

__version__ = "0.2.5"
__version__ = "0.2.6"

0 comments on commit f259efc

Please sign in to comment.