Skip to content

Commit

Permalink
Review 'visbility' usage
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Nelson <[email protected]>
  • Loading branch information
ajnelson-nist committed Mar 13, 2024
1 parent 9be959b commit e93506c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions case_mapping/uco/observable.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from datetime import datetime
from typing import Dict
from typing import Dict, Optional

from cdo_local_uuid import local_uuid
from pytz import timezone
Expand Down Expand Up @@ -1342,14 +1342,14 @@ def __init__(
class FacetMessagethread(FacetEntity):
def __init__(
self,
visibility=None,
visibility: Optional[bool] = None,
participants=None,
messages=None,
):
"""
A message thread facet is a grouping of characteristics unique to a running
commentary of electronic messages pertaining to one topic or question.
:param visibility: A boolean value to indicate if the theead is private (False) or
:param visibility: A boolean value to indicate if the thread is private (False) or
public (True).
:param participants: Array of Account ObservableObject,
:param messages: Array of Message ObservableObjects.
Expand Down

0 comments on commit e93506c

Please sign in to comment.