Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 6170a48

Browse files
committed
lint
1 parent 2c461ce commit 6170a48

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docs/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,11 +386,12 @@ def autodoc_skip_member_handler(app, what, name, obj, skip, options):
386386
# Check if it's also available via the public google.auth.crypt path
387387
try:
388388
import google.auth.crypt
389+
389390
public_obj = getattr(google.auth.crypt, name, None)
390391
if public_obj is obj:
391-
return True # Skip this internal one
392+
return True # Skip this internal one
392393
except ImportError:
393-
pass # Should not happen if the library is installed
394+
pass # Should not happen if the library is installed
394395
return None # Default behavior (don't skip)
395396

396397

0 commit comments

Comments
 (0)