diff options
| author | Peter LaFosse <peter@vector35.com> | 2020-05-02 11:05:36 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2020-05-03 13:20:56 -0400 |
| commit | 8c7f25020b78168a94cb7a4e0c928b7afe9a6919 (patch) | |
| tree | 2c1d073a44b962322d4526a6047f9b506fb5c6d1 /python/flowgraph.py | |
| parent | 7934b29ab5aae1f50c054cca60a95f171758737d (diff) | |
return NotImplemented instead of None to placate the linter
Diffstat (limited to 'python/flowgraph.py')
| -rw-r--r-- | python/flowgraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
