Skip to content

Commit 08d3283

Browse files
committed
Remove argument which is the same as the default
1 parent 639c649 commit 08d3283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/importcompletion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def attr_matches(
101101

102102
def module_attr_matches(self, name: str) -> Set[str]:
103103
"""Only attributes which are modules to replace name with"""
104-
return self.attr_matches(name, prefix="", only_modules=True)
104+
return self.attr_matches(name, only_modules=True)
105105

106106
def complete(self, cursor_offset: int, line: str) -> Optional[Set[str]]:
107107
"""Construct a full list of possibly completions for imports."""

0 commit comments

Comments
 (0)