mlog: remove incorrect uses of global keyword
global is only needed to allow replacement of global values, they're always in scope to read.
This commit is contained in:
parent
3778a34979
commit
eb30c493f6
|
@ -160,7 +160,6 @@ def process_markup(args: Sequence[Union[AnsiDecorator, str]], keep: bool) -> Lis
|
||||||
return arr
|
return arr
|
||||||
|
|
||||||
def force_print(*args: str, **kwargs: Any) -> None:
|
def force_print(*args: str, **kwargs: Any) -> None:
|
||||||
global log_disable_stdout
|
|
||||||
if log_disable_stdout:
|
if log_disable_stdout:
|
||||||
return
|
return
|
||||||
iostr = io.StringIO()
|
iostr = io.StringIO()
|
||||||
|
@ -197,7 +196,6 @@ def cmd_ci_include(file: str) -> None:
|
||||||
|
|
||||||
def log(*args: Union[str, AnsiDecorator], is_error: bool = False,
|
def log(*args: Union[str, AnsiDecorator], is_error: bool = False,
|
||||||
**kwargs: Any) -> None:
|
**kwargs: Any) -> None:
|
||||||
global log_errors_only
|
|
||||||
arr = process_markup(args, False)
|
arr = process_markup(args, False)
|
||||||
if log_file is not None:
|
if log_file is not None:
|
||||||
print(*arr, file=log_file, **kwargs)
|
print(*arr, file=log_file, **kwargs)
|
||||||
|
|
Loading…
Reference in New Issue