Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
AWhetter committed Jun 20, 2024
1 parent 453863f commit 26028dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/python/pypackagecomplex/complex/_private_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ def public_method():

def imported_function():
"""A function that gets imported."""
return 1
return 1
2 changes: 1 addition & 1 deletion tests/python/pypackagecomplex/complex/submodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

def defined_function():
"""A function defined in the submodule."""
return 1
return 1
4 changes: 3 additions & 1 deletion tests/python/test_pyintegration.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,9 @@ def test_hiding_imported_members(builder, parse):


def test_imports_into_modules_always_hidden(builder, parse):
confoverrides = {"autoapi_options": ["members", "undoc-members", "imported-members"]}
confoverrides = {
"autoapi_options": ["members", "undoc-members", "imported-members"]
}
builder("pypackagecomplex", confoverrides=confoverrides)

submodule_file = parse("_build/html/autoapi/complex/submodule/index.html")
Expand Down

0 comments on commit 26028dc

Please sign in to comment.