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 3437de8 commit f37c054
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 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 @@ -106,7 +106,7 @@ jobs:
- name: Remove tests folder (Windows)
if: contains(matrix.os, 'windows')
run: |
Remove-Item .\tests\ -Force -Recurse
Remove-Item tests -Force -Recurse
- name: Remove tests folder (Unix)
if: !contains(matrix.os, 'windows')
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 @@ -159,7 +159,7 @@ jobs:
- name: Remove tests folder (Windows)
if: contains(matrix.os, 'windows')
run: |
Remove-Item .\tests\ -Force -Recurse
Remove-Item tests -Force -Recurse
- name: Remove tests folder (Unix)
if: !contains(matrix.os, 'windows')
Expand Down
1 change: 1 addition & 0 deletions knowsmore/cmd/wordlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ 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 f37c054

Please sign in to comment.