Skip to content

Commit f31c09b

Browse files
tests: fix typing error
1 parent a2f59af commit f31c09b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/frameworks/function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def _collect_functions(module):
121121
seen_functions.add(o)
122122
o = cast(FullyNamedFunction, o)
123123
o.__fullname__ = (
124-
".".join((c.__fullname__, o.__name__))
124+
".".join((c.__fullname__, o.__name__ or ""))
125125
if c.__fullname__
126126
else o.__name__
127127
)

0 commit comments

Comments
 (0)