summaryrefslogtreecommitdiff
path: root/lib/spack/llnl/util/tty
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2022-12-23 10:06:24 -0800
committerHarmen Stoppels <harmenstoppels@gmail.com>2022-12-26 22:28:44 +0100
commitd100ac892352e3b63b1fe028207c72fc9a852724 (patch)
tree332a69cb7ac24c09049316c975f7f70178a240bd /lib/spack/llnl/util/tty
parente8fa8c5f0171366f7f2a5cfb3176e42ccf17b6be (diff)
downloadspack-d100ac892352e3b63b1fe028207c72fc9a852724.tar.gz
spack-d100ac892352e3b63b1fe028207c72fc9a852724.tar.bz2
spack-d100ac892352e3b63b1fe028207c72fc9a852724.tar.xz
spack-d100ac892352e3b63b1fe028207c72fc9a852724.zip
types: fix type annotations and remove novm annootations for llnl module
Apparently I forgot to do this in #34305.
Diffstat (limited to 'lib/spack/llnl/util/tty')
-rw-r--r--lib/spack/llnl/util/tty/log.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/llnl/util/tty/log.py b/lib/spack/llnl/util/tty/log.py
index 0b79dd01ac..008396dbe2 100644
--- a/lib/spack/llnl/util/tty/log.py
+++ b/lib/spack/llnl/util/tty/log.py
@@ -21,12 +21,12 @@ import threading
import traceback
from contextlib import contextmanager
from threading import Thread
-from types import ModuleType # novm
-from typing import Optional # novm
+from types import ModuleType
+from typing import Optional
import llnl.util.tty as tty
-termios = None # type: Optional[ModuleType]
+termios: Optional[ModuleType] = None
try:
import termios as term_mod