Skip to content
Snippets Groups Projects
Commit 1b53cc3c authored by Neil Johnson's avatar Neil Johnson
Browse files

fix line length

parent 53492623
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,9 @@ class RegistrationConfig(Config):
raise ConfigError('Invalid auto_join_rooms entry %s' % (room_alias,))
self.autocreate_auto_join_rooms = config.get("autocreate_auto_join_rooms", True)
self.disable_msisdn_registration = config.get("disable_msisdn_registration", False)
self.disable_msisdn_registration = (
config.get("disable_msisdn_registration", False)
)
def default_config(self, generate_secrets=False, **kwargs):
if generate_secrets:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment