Skip to content

Commit

Permalink
Lint and fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
arokem committed Sep 10, 2024
1 parent 3f2e1f1 commit 20b6ccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .maintenance/update_changes.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#
# Collects the pull-requests since the latest release and
# aranges them in the CHANGES.rst file.
# arranges them in the CHANGES.rst file.
#
# This is a script to be run before releasing a new version.
#
Expand Down
3 changes: 1 addition & 2 deletions afqinsight/match.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import pandas as pd
from scipy.optimize import linear_sum_assignment


__all__ = ["mahalonobis_dist_match"]


Expand Down Expand Up @@ -96,7 +95,7 @@ def mahalonobis_dist_match(
filtered_test_ind.append(row_idx)
filtered_ctrl_ind.append(col_idx)

# contstruct dataframe if no dataframe is provided
# construct dataframe if no dataframe is provided
if data is None:
data = {}
filtered_test = test[filtered_test_ind]
Expand Down

0 comments on commit 20b6ccb

Please sign in to comment.