Skip to content

Commit e0f2129

Browse files
fix: linter error 192:80: E501 line too long
1 parent a171051 commit e0f2129

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

table/scripts/monitor.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,9 @@ def get_disk_free_gb(path: str) -> Optional[float]:
189189
return usage.free / (1024 ** 3)
190190

191191

192-
def get_response_time_ms(url: str, timeout: float = 10.0) -> Tuple[Optional[int], Optional[int], Optional[str]]:
192+
def get_response_time_ms(
193+
url: str, timeout: float = 10.0
194+
) -> Tuple[Optional[int], Optional[int], Optional[str]]:
193195
if not url:
194196
return None, None, None
195197

0 commit comments

Comments
 (0)