From fef579672fb3ffaab7981bc4db08532b999fee38 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Wed, 10 Jul 2024 10:54:05 +0200 Subject: [PATCH] topotato: remove vestigial check There used to be code after this. There isn't anymore. Remove so pylint doesn't complain. Signed-off-by: David Lamparter --- topotato/pretty.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/topotato/pretty.py b/topotato/pretty.py index 6b824d3..5896c71 100644 --- a/topotato/pretty.py +++ b/topotato/pretty.py @@ -410,9 +410,6 @@ def when_call(self, call, result): self.instance.ts_rel = self.item.parent.starting_ts - if call.excinfo: - return - def files(self): dot = self.instance.network.dot() yield PrettyExtraFile(self, "dotfile", ".dot", "text/plain; charset=utf-8", dot)