Skip to content

Commit 50bc9bb

Browse files
committed
lint fixes
1 parent 65e877e commit 50bc9bb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tools/analytics/org/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ The tools in this directory help us understand how GitHub Actions runners are be
3636
- Intelligent cache invalidation
3737
- Rate limit optimization
3838
- Reduces redundant API calls during analysis
39-

tools/analytics/org/cache_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,7 @@ def clear_cache():
130130
logging.info(f"[clear_cache] Cache directory does not exist: {CACHE_DIR}")
131131

132132

133-
def make_cached_request(
134-
url: str, headers: Dict[str, str]
135-
) -> Optional[Dict]:
133+
def make_cached_request(url: str, headers: Dict[str, str]) -> Optional[Dict]:
136134
"""
137135
Make an HTTP request with caching. Returns the JSON response if successful.
138136

tools/analytics/org/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
requests>=2.28.0
2+
pyyaml>=6.0
3+
python-dotenv>=0.19.0

0 commit comments

Comments
 (0)