luukas dba3fafa87
Use shorthand for Controller.check_system_user
This reduced the code from 4 lines to 1 line.

The code
    if <condition>:
        return True
    else:
        return False
can be shortened to
    return <condition>
2022-05-20 13:31:30 +03:00
..
2022-05-18 17:37:07 -04:00
2022-03-23 02:50:12 +00:00
2022-05-19 01:10:06 +03:00
2022-05-15 15:59:55 -05:00