Skip to content

Commit 51cfe7c

Browse files
committed
formatting
1 parent 29fbeec commit 51cfe7c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

codeflash/code_utils/env_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,4 @@ def is_ci() -> bool:
160160
def is_pr_draft() -> bool:
161161
"""Check if the PR is draft. in the github action context."""
162162
event = get_cached_gh_event_data()
163-
return bool(event.get("pull_request", {}).get("draft", False))
163+
return bool(event.get("pull_request", {}).get("draft", False))

codeflash/discovery/discover_unit_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import re
1010
import sqlite3
1111
import subprocess
12-
import sys
1312
import unittest
1413
from collections import defaultdict
1514
from pathlib import Path

0 commit comments

Comments
 (0)