refactor(api/variables): VariableError as a ValueError. (#8554)

This commit is contained in:
-LAN- 2024-09-30 12:48:58 +08:00 committed by GitHub
parent 3af65b2f45
commit ada9d408ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,2 +1,2 @@
class VariableError(Exception):
class VariableError(ValueError):
pass