Skip to content

Commit dd6840a

Browse files
committed
Fix prefix in bookmarkPath
No effects were observed on Make-managed files. References: * #78 Reported-by: Fabrizio Turchi <[email protected]> Signed-off-by: Alex Nelson <[email protected]>
1 parent 0ae9773 commit dd6840a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

case_mapping/uco/observable.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ def __init__(
662662
self,
663663
accessedTime=None,
664664
application_id=None,
665-
bookmarkPath=None,
665+
bookmarkPath: Optional[str] = None,
666666
modifiedTime=None,
667667
createdTime=None,
668668
urlTargeted_id=None,
@@ -681,7 +681,7 @@ def __init__(
681681
"""
682682
super().__init__()
683683
self["@type"] = "uco-observable:BrowserBookmarkFacet"
684-
self._str_vars(**{"observable:bookmarkPath": bookmarkPath})
684+
self._str_vars(**{"uco-observable:bookmarkPath": bookmarkPath})
685685
self._int_vars(**{"uco-observable:visitCount": visitCount})
686686
self._node_reference_vars(
687687
**{

0 commit comments

Comments
 (0)