Skip to content

Commit

Permalink
chore: set method to private
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulFarault committed Jun 7, 2024
1 parent e3dbe6a commit 9c881ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tdp/dao.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class SCHLatestStatus(NamedTuple):
latest_is_active: Optional[bool]


def create_get_sch_latest_status_statement(
def _create_get_sch_latest_status_statement(
service_to_filter: Optional[str] = None,
component_to_filter: Optional[str] = None,
hosts_to_filter: Optional[Iterable[str]] = None,
Expand Down Expand Up @@ -165,7 +165,7 @@ def get_hosted_entity_statuses(
filter_stale: Whether to filter stale statuses.
"""
self._check_session()
stmt = create_get_sch_latest_status_statement(
stmt = _create_get_sch_latest_status_statement(
service_to_filter=service,
component_to_filter=component,
hosts_to_filter=hosts,
Expand Down

0 comments on commit 9c881ab

Please sign in to comment.