We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609e940 commit 5c25270Copy full SHA for 5c25270
ctfcli/core/instance/config.py
@@ -47,10 +47,10 @@ def getall():
47
config[c["key"]] = c["value"]
48
49
# Not much point in saving internal configs
50
- del config["ctf_version"]
51
- del config["version_latest"]
52
- del config["next_update_check"]
53
- del config["setup"]
+ config.pop("ctf_version", None)
+ config.pop("version_latest", None)
+ config.pop("next_update_check", None)
+ config.pop("setup", None)
54
55
return config
56
0 commit comments