We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7f52dd commit b05aae6Copy full SHA for b05aae6
graph_ml/utils/config.py
@@ -24,4 +24,4 @@ def get_formatted_os():
24
return "Linux"
25
if PLATFORM == "darwin":
26
return "MacOS"
27
- assert False, f"Unsupported platform: {PLATFORM}"
+ assert False, f"Unsupported platform: {PLATFORM}"
tests/test_gpu_available.py
@@ -1,7 +1,6 @@
1
from __future__ import annotations
2
import os
3
4
-import pytest
5
6
from graph_ml.utils import config
7
@@ -32,4 +31,4 @@ def test_gpu_available():
32
31
33
34
def test_device_count():
35
- assert config.DEVICE_COUNT >= 1
+ assert config.DEVICE_COUNT >= 1
0 commit comments