Skip to content

Commit 2cb3c2d

Browse files
author
Corentin
committed
adding dev dep
1 parent fbbe562 commit 2cb3c2d

File tree

6 files changed

+275
-3
lines changed

6 files changed

+275
-3
lines changed

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
"tests"
44
],
55
"python.testing.unittestEnabled": false,
6-
"python.testing.pytestEnabled": true
6+
"python.testing.pytestEnabled": true,
7+
"python.linting.pylintEnabled": true,
8+
"python.linting.enabled": true
79
}

myoquant/commands/__init__.py

Whitespace-only changes.

myoquant/src/SDH_analysis.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
from rich.progress import track
88
from skimage.measure import regionprops_table
99

10-
from .gradcam import *
10+
from .gradcam import get_img_array, make_gradcam_heatmap, save_and_display_gradcam
1111
from .random_brightness import *
12+
import numpy as np
1213

1314
labels_predict = ["control", "sick"]
1415
tf.random.set_seed(42)

myoquant/src/__init__.py

Whitespace-only changes.

poetry.lock

Lines changed: 267 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ rich = "*"
2727

2828
[tool.poetry.dev-dependencies]
2929
pytest = "^7"
30+
mypy = "^0.991"
31+
black = "^22.10.0"
32+
pylint = "^2.15.6"
3033

3134
[build-system]
3235
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)