Skip to content

Commit

Permalink
missing self arg in _is_base_image bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybart1337 committed Jan 31, 2024
1 parent 614e9a1 commit 7e8b320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/worker/agent_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def _parse_all_hists(self, hist_paths: List[str]) -> List[str]:
to_remove = self._parse_and_update_history(hist, to_remove)
return list(to_remove.keys())

def _is_base_image(image_name: str):
def _is_base_image(self, image_name: str):
for base_image_name in constants._BASE_IMAGES:
if image_name.endswith(base_image_name):
return True
Expand Down

0 comments on commit 7e8b320

Please sign in to comment.