This:
def very_important_function(
template: str,
*variables,
file: os.PathLike,
debug: bool = False,
):
code
code
Should be formatted like this
def very_important_function(
template: str,
*variables,
file: os.PathLike,
debug: bool = False,
):
code
code
To comply with PEP-8 indentation directives:
# Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest.
def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)