Skip to content

Commit

Permalink
📝 docs: deprecated escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerohertz committed Nov 4, 2024
1 parent 71114e4 commit e866104
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zerohertzLib/algorithm/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def bellman_ford(graph: List[List[Tuple[int, int]]], start: int) -> List[int]:


def dijkstra(graph: List[List[Tuple[int, int]]], start: int) -> List[int]:
"""Graph에서 시작 node로부터 모든 다른 node까지의 최단 경로 거리 계산
r"""Graph에서 시작 node로부터 모든 다른 node까지의 최단 경로 거리 계산
Note:
Time Complexity: :math:`O((V+E)\log{V})`
Expand Down
2 changes: 1 addition & 1 deletion zerohertzLib/vision/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def json(
path: Optional[str] = "/label-studio/data/local",
data_function: Optional[Callable[[str], Dict[str, Any]]] = None,
) -> None:
"""Label Studio에 mount된 data를 불러오기 위한 JSON file 생성
r"""Label Studio에 mount된 data를 불러오기 위한 JSON file 생성
Note:
아래와 같이 환경 변수가 설정된 Label Studio image를 사용하면 ``LabelStudio`` class로 생성된 JSON file을 적용할 수 있다.
Expand Down

0 comments on commit e866104

Please sign in to comment.