Skip to content

Commit 9077459

Browse files
pre-commit-ci[bot]shaypal5
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cf97379 commit 9077459

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

examples/redis_example.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
#!/usr/bin/env python3
2-
"""
3-
Example demonstrating the Redis core for cachier.
2+
"""Example demonstrating the Redis core for cachier.
43
54
This example shows how to use cachier with Redis as the backend for
65
high-performance caching.
76
87
Requirements:
98
pip install redis cachier
9+
1010
"""
1111

1212
import time
1313
from datetime import timedelta
1414

1515
try:
1616
import redis
17+
1718
from cachier import cachier
1819
except ImportError as e:
1920
print(f"Missing required package: {e}")

tests/redis_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
redis>=4.0.0
22
pandas>=1.3.0
3-
birch>=0.0.35
3+
birch>=0.0.35

0 commit comments

Comments
 (0)