From 4a72f315e6641ecf536562c673d0c8ebdd72a515 Mon Sep 17 00:00:00 2001 From: bruno-f-cruz <7049351+bruno-f-cruz@users.noreply.github.com> Date: Sun, 20 Apr 2025 17:54:42 -0700 Subject: [PATCH] Favor whoami repository over protocol --- code/data-access/plot_session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/data-access/plot_session.py b/code/data-access/plot_session.py index ab08fd06..ee5ba5d8 100644 --- a/code/data-access/plot_session.py +++ b/code/data-access/plot_session.py @@ -34,7 +34,7 @@ def _get_yml_from_who_am_i(who_am_i: int, release: str = "main") -> io.BytesIO: else: return yml -def _get_who_am_i_list(url: str = "https://raw.githubusercontent.com/harp-tech/protocol/main/whoami.yml"): +def _get_who_am_i_list(url: str = "https://raw.githubusercontent.com/harp-tech/whoami/main/whoami.yml"): response = requests.get(url, allow_redirects=True, timeout=5) content = response.content.decode("utf-8") content = yaml.safe_load(content)