From 91b64c239dc4c0182cea116da59450039e116b32 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Mon, 31 Mar 2025 20:31:18 -0700 Subject: [PATCH] Fixes unnecessary space in SyclPlatform.__repr__ --- dpctl/_sycl_platform.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/dpctl/_sycl_platform.pyx b/dpctl/_sycl_platform.pyx index c27cb63dad..88dcb25dc3 100644 --- a/dpctl/_sycl_platform.pyx +++ b/dpctl/_sycl_platform.pyx @@ -181,7 +181,6 @@ cdef class SyclPlatform(_SyclPlatform): + ", " + self.vendor + ", " - + " " + self.version + "] at {}>".format(hex(id(self))) )