Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sambacc/commands/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

from sambacc import config
from sambacc import leader
from sambacc import opener
from sambacc import permissions
from sambacc import simple_waiter
from sambacc.opener import Opener

_INOTIFY_OK = True
try:
Expand Down Expand Up @@ -224,7 +224,7 @@ def require_validation(self) -> typing.Optional[bool]:
"""Return true if configuration needs validation."""

@property
def opener(self) -> opener.Opener:
def opener(self) -> Opener:
"""Return an appropriate opener object for this instance."""


Expand Down
Loading