Skip to content

Commit 05af374

Browse files
committed
fix: f-string quotes (compatibiliy with pre 3.12)
1 parent fcdb92d commit 05af374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e_tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def try_start_docker():
161161
print("Docker wasn't run. Manual start may be required.")
162162
return False
163163

164-
container_name = f"test_local_chain_{str(time.time()).replace(".", "_")}"
164+
container_name = f"test_local_chain_{str(time.time()).replace('.', '_')}"
165165
image_name = "ghcr.io/opentensor/subtensor-localnet:devnet-ready"
166166

167167
# Command to start container

0 commit comments

Comments
 (0)