mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Make global variables immutable
This commit is contained in:
parent
6f959b3bd3
commit
cb44046a8a
1 changed files with 2 additions and 2 deletions
|
|
@ -35,8 +35,8 @@ except ImportError:
|
||||||
|
|
||||||
cli_logger = log.get(__name__)
|
cli_logger = log.get(__name__)
|
||||||
|
|
||||||
GENERAL_ALL = set(['status_path', 'passwordeval'])
|
GENERAL_ALL = frozenset(['status_path', 'passwordeval'])
|
||||||
GENERAL_REQUIRED = set(['status_path'])
|
GENERAL_REQUIRED = frozenset(['status_path'])
|
||||||
|
|
||||||
|
|
||||||
class CliError(RuntimeError):
|
class CliError(RuntimeError):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue