Esempio n. 1
0
    def handle(self, *args: Any, **options: Optional[str]) -> None:
        if options["cache"] is not None:
            fill_remote_cache(options["cache"])
            return

        for cache in cache_fillers.keys():
            fill_remote_cache(cache)
    def handle(self, *args: Any, **options: str) -> None:
        if options["cache"] is not None:
            fill_remote_cache(options["cache"])
            return

        for cache in cache_fillers.keys():
            fill_remote_cache(cache)
Esempio n. 3
0
    def handle(self, *args, **options):
        # type: (*Any, **str) -> None
        if options["cache"] is not None:
            fill_remote_cache(options["cache"])
            return

        for cache in cache_fillers.keys():
            fill_remote_cache(cache)
Esempio n. 4
0
    def handle(self, *args, **options):
        if options["cache"] is not None:
            return fill_remote_cache(options["cache"])

        for cache in cache_fillers.keys():
            fill_remote_cache(cache)