Skip to content

Commit

Permalink
Make private
Browse files Browse the repository at this point in the history
  • Loading branch information
andycui97 committed Dec 16, 2022
1 parent e11a713 commit 3767c81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lineapy/graph_reader/artifact_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ def __init__(
self.dependencies: TaskGraphEdge = slugify_dependencies(dependencies)

# Create taskgraph breakdowns based on dependencies
self.inter_session_taskgraph = self.create_inter_session_taskgraph(
self.inter_session_taskgraph = self._create_inter_session_taskgraph(
self.dependencies
)

self.inter_artifact_taskgraph = self.create_inter_artifact_taskgraph(
self.inter_artifact_taskgraph = self._create_inter_artifact_taskgraph(
self.dependencies
)

Expand Down Expand Up @@ -158,7 +158,7 @@ def _validate_graph_acyclic(self, taskgraph: TaskGraph):
"Please check if the provided dependencies include circular relationships."
)

def create_inter_session_taskgraph(
def _create_inter_session_taskgraph(
self, dependencies: TaskGraphEdge
) -> TaskGraph:
"""
Expand Down Expand Up @@ -209,7 +209,7 @@ def create_inter_session_taskgraph(

return inter_session_taskgraph

def create_inter_artifact_taskgraph(
def _create_inter_artifact_taskgraph(
self, dependencies: TaskGraphEdge
) -> TaskGraph:
"""
Expand Down

0 comments on commit 3767c81

Please sign in to comment.