From 8c7f25020b78168a94cb7a4e0c928b7afe9a6919 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Sat, 2 May 2020 11:05:36 -0400 Subject: return NotImplemented instead of None to placate the linter --- python/flowgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/flowgraph.py') diff --git a/python/flowgraph.py b/python/flowgraph.py index 95809d45..786a0595 100644 --- a/python/flowgraph.py +++ b/python/flowgraph.py @@ -736,7 +736,7 @@ class FlowGraph(object): :return: Updated graph, or ``None`` :rtype: FlowGraph """ - return None + return NotImplemented def set_option(self, option, value = True): core.BNSetFlowGraphOption(self.handle, option, value) -- cgit v1.3.1