Skip to content

Commit

Permalink
BugFix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
helviojunior committed May 3, 2024
1 parent 4611851 commit 3437de8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
Remove-Item .\tests\ -Force -Recurse
- name: Remove tests folder (Unix)
if: not contains(matrix.os, 'windows')
if: !contains(matrix.os, 'windows')
run: |
rm -rf ./tests/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
Remove-Item .\tests\ -Force -Recurse
- name: Remove tests folder (Unix)
if: not contains(matrix.os, 'windows')
if: !contains(matrix.os, 'windows')
run: |
rm -rf ./tests/
Expand Down
1 change: 0 additions & 1 deletion knowsmore/cmd/wordlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def setup(self):
self.unique_ch_b = int(np.sum([len(v.encode("UTF-8")) for v in self.unique_chars]))

def run(self):

self.setup()

estimated_size = self.calculate()
Expand Down

0 comments on commit 3437de8

Please sign in to comment.