Make these keyword arguments kw-only.

master
voussoir 2020-11-09 16:32:44 -08:00
parent aabb6691f0
commit b7ce46bef2
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ class YCDLDBChannelMixin:
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:
return self._rss_assisted_refresh(skip_failures=skip_failures, commit=commit)