mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
7 lines
153 B
Python
7 lines
153 B
Python
import os
|
|
from typing import Optional
|
|
|
|
|
|
def is_root(user_id: Optional[int] = None):
|
|
return user_id == 0 if user_id is not None else os.getuid() == 0
|