Skip to content

Commit 26028dc

Browse files
committed
Fix formatting
1 parent 453863f commit 26028dc

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

tests/python/pypackagecomplex/complex/_private_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ def public_method():
88

99
def imported_function():
1010
"""A function that gets imported."""
11-
return 1
11+
return 1

tests/python/pypackagecomplex/complex/submodule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
def defined_function():
55
"""A function defined in the submodule."""
6-
return 1
6+
return 1

tests/python/test_pyintegration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,9 @@ def test_hiding_imported_members(builder, parse):
747747

748748

749749
def test_imports_into_modules_always_hidden(builder, parse):
750-
confoverrides = {"autoapi_options": ["members", "undoc-members", "imported-members"]}
750+
confoverrides = {
751+
"autoapi_options": ["members", "undoc-members", "imported-members"]
752+
}
751753
builder("pypackagecomplex", confoverrides=confoverrides)
752754

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

0 commit comments

Comments
 (0)