Spaces:
Runtime error
Runtime error
ashutosh1919
commited on
Commit
·
a811e85
1
Parent(s):
fe24d5d
Some changes
Browse files
.github/workflows/run-tests.yml
CHANGED
@@ -34,6 +34,6 @@ jobs:
|
|
34 |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
35 |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
36 |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
37 |
-
- name:
|
38 |
run: |
|
39 |
bash run_tests.sh
|
|
|
34 |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
35 |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
36 |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
37 |
+
- name: Run all tests
|
38 |
run: |
|
39 |
bash run_tests.sh
|
quantum_perceptron/utils/data_utils.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import numpy as np
|
2 |
-
import numpy.typing as npt
|
3 |
|
4 |
|
5 |
def assert_negative(data: int):
|
|
|
1 |
import numpy as np
|
|
|
2 |
|
3 |
|
4 |
def assert_negative(data: int):
|