mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +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__)
|
||||
|
||||
GENERAL_ALL = set(['status_path', 'passwordeval'])
|
||||
GENERAL_REQUIRED = set(['status_path'])
|
||||
GENERAL_ALL = frozenset(['status_path', 'passwordeval'])
|
||||
GENERAL_REQUIRED = frozenset(['status_path'])
|
||||
|
||||
|
||||
class CliError(RuntimeError):
|
||||
|
|
|
|||
Loading…
Reference in a new issue