Skip to content

Commit 0629adc

Browse files
committed
chore(deps):add dotenv
1 parent 02adf8c commit 0629adc

3 files changed

Lines changed: 22 additions & 9 deletions

File tree

poetry.lock

Lines changed: 19 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ pygithub = "^1.58.2"
6262
pytest = "^7.4"
6363
pytest-asyncio = "^0.21"
6464
pytest-cov = "^4.0"
65+
python-dotenv = { version = "^1", python = ">=3.8.1" }
6566
pytest-mock = "^3.10"
6667
types-redis = "^4.6"
6768
twine = "^4.0"

scripts/create_issues.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
IGNORE_GROUPS = {
1818
'suggestion', 'tdigest', 'scripting', 'cf', 'topk',
1919
'hyperloglog', 'graph', 'timeseries', 'connection',
20-
'server', 'generic', 'cms', 'bf', 'cluster',
20+
'server', 'generic', 'cms', 'cluster',
2121
'search', 'bitmap',
2222
}
2323
IGNORE_COMMANDS = {
@@ -49,9 +49,7 @@ def commands_groups(
4949

5050

5151
def get_unimplemented_and_implemented_commands() -> tuple[dict[str, list[str]], dict[str, list[str]]]:
52-
"""Returns 2 dictionaries, one of unimplemented commands and another of implemented commands
53-
54-
"""
52+
"""Returns 2 dictionaries, one of unimplemented commands and another of implemented commands"""
5553
commands = download_redis_commands()
5654
implemented_commands_set = implemented_commands()
5755
implemented_dict, unimplemented_dict = commands_groups(commands, implemented_commands_set)

0 commit comments

Comments
 (0)