From 24aa489d9516cbe6ecb576fa37f2ce4b926e91af Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Mon, 7 Oct 2024 16:39:10 -0400 Subject: [PATCH] style updates --- docs/conf.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 7eb29ddb..c18e66f8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -164,9 +164,7 @@ def linkcode_resolve(domain, info): return None def is_valid_code_object(obj): - return ( - inspect.isclass(obj) or inspect.ismethod(obj) or inspect.isfunction(obj) - ) + return inspect.isclass(obj) or inspect.ismethod(obj) or inspect.isfunction(obj) obj = module for part in info["fullname"].split("."):