aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Preud'homme <thomasp@graphcore.ai>2021-01-20 18:01:51 +0000
committerThomas Preud'homme <thomasp@graphcore.ai>2021-01-20 18:37:29 +0000
commit38072912f259d031db8d59b407db8b1373974e38 (patch)
tree3961630c46aa8312def19198f1f763c6eef86b60
parentc8a6486626c8af2db5dd899c7cd1b46623ceb998 (diff)
Fix return type in baseline()'s type hint
Reviewed By: danilaml Differential Revision: https://reviews.llvm.org/D95066
-rw-r--r--lnt/server/ui/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lnt/server/ui/views.py b/lnt/server/ui/views.py
index c3294a0..61819ac 100644
--- a/lnt/server/ui/views.py
+++ b/lnt/server/ui/views.py
@@ -1658,7 +1658,7 @@ class MatrixOptions(Form):
def baseline():
- # type: () -> Optional[testsuitedb.Baseline]
+ # type: () -> Optional[testsuitedb.TestSuiteDB.Baseline]
"""Get the baseline object from the user's current session baseline value
or None if one is not defined.
"""