Skip to content

Commit e93506c

Browse files
committed
Review 'visbility' usage
Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
1 parent 9be959b commit e93506c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

case_mapping/uco/observable.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from datetime import datetime
2-
from typing import Dict
2+
from typing import Dict, Optional
33

44
from cdo_local_uuid import local_uuid
55
from pytz import timezone
@@ -1342,14 +1342,14 @@ def __init__(
13421342
class FacetMessagethread(FacetEntity):
13431343
def __init__(
13441344
self,
1345-
visibility=None,
1345+
visibility: Optional[bool] = None,
13461346
participants=None,
13471347
messages=None,
13481348
):
13491349
"""
13501350
A message thread facet is a grouping of characteristics unique to a running
13511351
commentary of electronic messages pertaining to one topic or question.
1352-
:param visibility: A boolean value to indicate if the theead is private (False) or
1352+
:param visibility: A boolean value to indicate if the thread is private (False) or
13531353
public (True).
13541354
:param participants: Array of Account ObservableObject,
13551355
:param messages: Array of Message ObservableObjects.

0 commit comments

Comments
 (0)