Make these keyword arguments kw-only.
This commit is contained in:
parent
aabb6691f0
commit
b7ce46bef2
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ class YCDLDBChannelMixin:
|
||||||
|
|
||||||
return excs
|
return excs
|
||||||
|
|
||||||
def refresh_all_channels(self, force=False, skip_failures=False, commit=True):
|
def refresh_all_channels(self, *, force=False, skip_failures=False, commit=True):
|
||||||
if not force:
|
if not force:
|
||||||
return self._rss_assisted_refresh(skip_failures=skip_failures, commit=commit)
|
return self._rss_assisted_refresh(skip_failures=skip_failures, commit=commit)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue