Skip to content

Commit

Permalink
chore(deps):add dotenv
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Sep 24, 2023
1 parent 02adf8c commit 0629adc
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
24 changes: 19 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ pygithub = "^1.58.2"
pytest = "^7.4"
pytest-asyncio = "^0.21"
pytest-cov = "^4.0"
python-dotenv = { version = "^1", python = ">=3.8.1" }
pytest-mock = "^3.10"
types-redis = "^4.6"
twine = "^4.0"
Expand Down
6 changes: 2 additions & 4 deletions scripts/create_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
IGNORE_GROUPS = {
'suggestion', 'tdigest', 'scripting', 'cf', 'topk',
'hyperloglog', 'graph', 'timeseries', 'connection',
'server', 'generic', 'cms', 'bf', 'cluster',
'server', 'generic', 'cms', 'cluster',
'search', 'bitmap',
}
IGNORE_COMMANDS = {
Expand Down Expand Up @@ -49,9 +49,7 @@ def commands_groups(


def get_unimplemented_and_implemented_commands() -> tuple[dict[str, list[str]], dict[str, list[str]]]:
"""Returns 2 dictionaries, one of unimplemented commands and another of implemented commands
"""
"""Returns 2 dictionaries, one of unimplemented commands and another of implemented commands"""
commands = download_redis_commands()
implemented_commands_set = implemented_commands()
implemented_dict, unimplemented_dict = commands_groups(commands, implemented_commands_set)
Expand Down

0 comments on commit 0629adc

Please sign in to comment.