From 9e1811a3310fe0057e26986a6a698c65971771da Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Fri, 30 Sep 2022 18:50:01 -0400 Subject: [PATCH] remove unused variable from conftest (#13575) --- tests/conftest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 7c467d1818e5..e75995e1804e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -676,7 +676,6 @@ def root_path_populated_with_config(tmp_chia_root) -> Path: @pytest.fixture(scope="function") def config_with_address_prefix(root_path_populated_with_config: Path, prefix: str) -> Dict[str, Any]: - updated_config: Dict[str, Any] = {} with lock_and_load_config(root_path_populated_with_config, "config.yaml") as config: if prefix is not None: config["network_overrides"]["config"][config["selected_network"]]["address_prefix"] = prefix