We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4701183 commit 97e7a61Copy full SHA for 97e7a61
files/validate_config.py
@@ -48,16 +48,6 @@ def confirm_config_file_exists(self):
48
"Create from config.json.example"
49
)
50
51
- def confirm_environment_valid(self):
52
- """
53
- The 'environment' config item is required to determine
54
- whether prod or dev URLs are used for installing packages.
55
56
- if "environment" not in self.config:
57
- raise ValidationError
58
- if self.config["environment"] not in ("prod", "dev", "staging"):
59
- raise ValidationError(f"Invalid environment: {self.config['environment']}")
60
-
61
def confirm_onion_config_valid(self):
62
"""
63
Only v3 onion services are supported.
0 commit comments