Skip to content
Snippets Groups Projects
Commit 4c03db7c authored by Marcus's avatar Marcus
Browse files

black

parent d96d4c3a
No related branches found
No related tags found
1 merge request!97Make shadow configurable
......@@ -11,6 +11,7 @@ from feudal_globalconfig import globalconfig
from ldf_adapter import User
from ldf_adapter.cmdline_params import args
def main():
try:
data = json.load(sys.stdin)
......@@ -25,9 +26,9 @@ def main():
user = User(data)
print(F"User: {user.data.username}")
print(f"User: {user.data.username}")
for grp in sorted(user.data.groups):
print (F" {grp}")
print(f" {grp}")
if __name__ == "__main__":
......
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