-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat(cli): update snapshot limit and enhance error handling
- Change snapshot limit to use SNAPSHOT_MAX_COUNT from const - Improve error messages and return types in push_to_cloud function - Add SNAPSHOT_MAX_COUNT constant in const.py to manage snapshots
- Loading branch information
Showing
2 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
PYPI_URL = "https://pypi.org/pypi/tsticker/json" | ||
STICKER_DIR_NAME = "stickers" | ||
SNAPSHOT_DIR_NAME = "snapshot" | ||
SNAPSHOT_MAX_COUNT = 12 |