Skip to content

Commit

Permalink
update error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
AHReccese committed Jul 25, 2024
1 parent 65cbb26 commit ffec8df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dmeta/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"pptx",
"xlsx"
]
NOT_IMPLEMENTED_ERROR = "Removing the meta data of this format is not yet supported by DMeta."
FILE_FORMAT_DOES_NOT_EXIST_ERROR = "Given file name doesn't have a specific format at the end."
INVALID_CONFIG_FILE_NAME_ERROR = "Given config file name should be str not the other type."
NOT_IMPLEMENTED_ERROR = "The file format is not supported."
FILE_FORMAT_DOES_NOT_EXIST_ERROR = "Failed to detect file format. Make sure the file has proper extension (.docx, .pptx, etc.)."
INVALID_CONFIG_FILE_NAME_ERROR = "Config file name is not a string."
CONFIG_FILE_DOES_NOT_EXIST_ERROR = "Given config file doesn't exist."
UPDATE_COMMAND_WITH_NO_CONFIG_FILE_ERROR = "when using the `update`/`update-all` command, you should set the .json config file through the --config command"
UPDATE_COMMAND_WITH_NO_CONFIG_FILE_ERROR = "No config file provided. Set the .json config file with --config command."

0 comments on commit ffec8df

Please sign in to comment.