From 0f9905870a2dd1c5b52a9f8f577d5004c4027615 Mon Sep 17 00:00:00 2001 From: galenseilis Date: Tue, 8 Apr 2025 19:25:55 -0700 Subject: [PATCH] remove inheriting from object --- ciw/deadlock/deadlock_detector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciw/deadlock/deadlock_detector.py b/ciw/deadlock/deadlock_detector.py index 9eac88e..b0b0c11 100644 --- a/ciw/deadlock/deadlock_detector.py +++ b/ciw/deadlock/deadlock_detector.py @@ -1,7 +1,7 @@ import networkx as nx -class NoDetection(object): +class NoDetection: """ A generic class for all deadlock detector classes to inherit from. Using this class is equivalent to having no deadlock detection