From 2163ac31062316fdeb53ccd799325190a26b43b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <alan.munoz@ed.ac.uk> Date: Wed, 15 Mar 2023 12:53:27 +0000 Subject: [PATCH] change(docs): clean up todos --- .gitlab-ci.yml | 2 +- src/agora/utils/merge.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5059b9ce..8d76094b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -67,7 +67,7 @@ Static Type: - poetry run mypy . --exclude 'setup\.py$' # We can remove the flag once this is resolved https://github.com/pypa/setuptools/issues/2345 -# TODO add more tests before activate automatic release +# TODO add more tests before activating auto-release # Bump_release: # stage: release # script: diff --git a/src/agora/utils/merge.py b/src/agora/utils/merge.py index 4e4abdb8..aec59a60 100644 --- a/src/agora/utils/merge.py +++ b/src/agora/utils/merge.py @@ -56,7 +56,6 @@ def apply_merges(data: pd.DataFrame, merges: np.ndarray): def join_tracks_pair(target: np.ndarray, source: np.ndarray) -> np.ndarray: """ Join two tracks and return the new value of the target. - TODO replace this with arrays only. """ target_copy = copy(target) end = find_1st(target_copy[::-1], 0, cmp_larger) -- GitLab