mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
Module doc strings
This commit is contained in:
parent
c3e48b5928
commit
5c511a00f5
7 changed files with 21 additions and 7 deletions
|
@ -1,4 +1,6 @@
|
||||||
# Functions not dependent on advlabdb
|
"""
|
||||||
|
Functions not dependent on advlabdb.
|
||||||
|
"""
|
||||||
|
|
||||||
from flask import flash, url_for
|
from flask import flash, url_for
|
||||||
from markupsafe import Markup, escape
|
from markupsafe import Markup, escape
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# Functions dependent on advlabdb.models
|
"""
|
||||||
|
Functions dependent on advlabdb.models.
|
||||||
|
"""
|
||||||
|
|
||||||
from functools import cache
|
from functools import cache
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# Functions not dependent on advlabdb.models
|
"""
|
||||||
|
Functions not dependent on advlabdb.models.
|
||||||
|
"""
|
||||||
|
|
||||||
import secrets
|
import secrets
|
||||||
from string import ascii_letters, digits
|
from string import ascii_letters, digits
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# No relative imports allowed in this file to be able to run server_setup.py without packages
|
"""
|
||||||
|
No relative imports allowed in this file to be able to run server_setup.py without packages.
|
||||||
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# No relative imports allowed in this file to be able to run server_setup.py without packages
|
"""
|
||||||
|
No relative imports allowed in this file to be able to run server_setup.py without packages.
|
||||||
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# No relative imports allowed in this file to be able to run server_setup.py without packages
|
"""
|
||||||
|
No relative imports allowed in this file to be able to run server_setup.py without packages.
|
||||||
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# No relative imports allowed in this file to be able to run server_setup.py without packages
|
"""
|
||||||
|
No relative imports allowed in this file to be able to run server_setup.py without packages.
|
||||||
|
"""
|
||||||
|
|
||||||
import subprocess # nosec 404
|
import subprocess # nosec 404
|
||||||
from getpass import getpass
|
from getpass import getpass
|
||||||
|
|
Loading…
Reference in a new issue