Skip to content

Commit

Permalink
fix issue with tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Baukebrenninkmeijer committed Oct 18, 2024
1 parent 57880f5 commit dd15887
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/documentation-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ jobs:
- name: Build documentation
run: |
sphinx-build -M html docs/source docs/build
# - name: Deploy
# uses: s0/git-publish-subdir-action@develop
# env:
# REPO: self
# BRANCH: gh-pages
# FOLDER: docs/build/html
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion table_evaluator/table_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def get_copies(self, return_len: bool = False) -> Union[pd.DataFrame, int]:

dup_idxs = fake_hashes.isin(real_hashes.values)
print(dup_idxs)
dup_idxs = dup_idxs[dup_idxs is True].sort_index().index.tolist()
dup_idxs = dup_idxs[dup_idxs].sort_index().index.tolist()

if self.verbose:
print(f'Nr copied columns: {len(dup_idxs)}')
Expand Down

0 comments on commit dd15887

Please sign in to comment.