Exemplo n.º 1
0
    def __init__(self, config: RepoConfig):
        super().__init__(config)

        self.repo_config = config
        self.offline_store = get_offline_store_from_config(
            config.offline_store)
        self.online_store = get_online_store_from_config(config.online_store)
Exemplo n.º 2
0
 def __init__(self, config: RepoConfig):
     assert config is not None
     self.config = config
     self.offline_store = get_offline_store_from_config(
         config.offline_store)
     self.online_store = get_online_store_from_config(config.online_store)