Skip to content

Commit b05aae6

Browse files
committed
format
1 parent a7f52dd commit b05aae6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

graph_ml/utils/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ def get_formatted_os():
2424
return "Linux"
2525
if PLATFORM == "darwin":
2626
return "MacOS"
27-
assert False, f"Unsupported platform: {PLATFORM}"
27+
assert False, f"Unsupported platform: {PLATFORM}"

tests/test_gpu_available.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import annotations
22
import os
33

4-
import pytest
54

65
from graph_ml.utils import config
76

@@ -32,4 +31,4 @@ def test_gpu_available():
3231

3332

3433
def test_device_count():
35-
assert config.DEVICE_COUNT >= 1
34+
assert config.DEVICE_COUNT >= 1

0 commit comments

Comments
 (0)