improve module docstrings and remove unnecessary shebangs
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
"""This module provides classes and methods for pretty console output."""
|
"""Library for consistent and visually appealing terminal output."""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/usr/bin/env python3
|
"""Library for verification of GPG signatures."""
|
||||||
|
|
||||||
""" This module validates GPG signatures for downloaded files. """
|
|
||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/usr/bin/env python3
|
"""Library for consistent interactive user input capturing."""
|
||||||
|
|
||||||
"""This module provides functions for (interactive) user input handling."""
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
#!/usr/bin/env python3
|
"""Library for downloading files from the web.
|
||||||
|
|
||||||
"""This module downloads Debian Linux installation images from the web."""
|
Specifically, debian installation images and any accompanying files
|
||||||
|
required for verification of authenticity and integrity of the
|
||||||
|
obtained images.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|||||||
Reference in New Issue
Block a user