Add __slots__ declarations
[linpy.git] / pypol / isl.py
index ecc32c7..edfed5a 100644 (file)
@@ -11,7 +11,9 @@ libisl.isl_dim_set = _isl.isl_dim_set
 
 class IslObject:
 
-    __slots__ = ('_ptr')
+    __slots__ = (
+        '_ptr'
+    )
 
     def __init__(self, ptr):
         self._ptr = ptr