-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#287): Removed last help function
- Loading branch information
1 parent
4fb5a29
commit f0e8223
Showing
1 changed file
with
0 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,19 +22,6 @@ def __is_tag_valid(tag: str) -> bool: | |
return re.fullmatch(TAG_REGEX, tag) is not None | ||
|
||
|
||
def show_help(ex: str, command: str): | ||
print(f"""{ex} {command} -- Prepare all relevant files for release | ||
Usage: | ||
{ex} {command} [tag] <flags> | ||
Tags have to follow the `vMAJOR.MINOR.PATCH-RELEASE` semantic. | ||
Flags: | ||
--help\tShows help for a specific command | ||
Copyright (c) lxgr-linux <[email protected]> 2024""") | ||
|
||
|
||
def main( | ||
ex: str, options: list[str], | ||
flags: dict[str, list[str]] | ||
|