Wrong indent in class EntraAuthenticator(ProxiedOIDCAuthenticator)
|
@property |
|
def scopes(self): |
|
mapped = set() |
|
for tiled_scopes in self.scopes_map.values(): |
|
mapped.update(tiled_scopes) |
|
return list(mapped) |
|
|
|
@scopes.setter |
|
def scopes(self, value): |
|
pass # ignored; scopes are derived from scopes_map |
Should be one level down so they can be used
Wrong indent in class EntraAuthenticator(ProxiedOIDCAuthenticator)
tiled/tiled/authenticators.py
Lines 340 to 349 in 995fa00
Should be one level down so they can be used