Skip to content

Commit

Permalink
fix: removed pycache, changed favicon
Browse files Browse the repository at this point in the history
Somehow, `__pycache__` had survived being included in `.gitignore` from the beginning.
  • Loading branch information
f-aguzzi committed May 10, 2024
1 parent 6691d18 commit a6407f6
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.DS_Store
*.pyc
/src/__pycache__
/src/.ipynb_checkpoints
/src/__pycache__
**/__pycache__/
src/tests/test_x_data.numbers
src/tests/test_x_data.xlsx
Binary file modified docs/static/img/docusaurus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/static/img/favicon.ico
Binary file not shown.
Binary file removed src/__pycache__/lldf.cpython-311.pyc
Binary file not shown.
Binary file removed src/__pycache__/svm.cpython-311.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion src/tests/test_lda.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ def test_lda(self):
lda = LDA(lldf.fused_data, lda_settings)
lda.lda()


def test_lda_predict(self):
'''Test case against prediction parameter issues.'''

Expand Down

0 comments on commit a6407f6

Please sign in to comment.