Skip to content

Commit a5627c4

Browse files
committed
use type for issue templates
Signed-off-by: Lukas Heumos <lukas.heumos@posteo.net>
1 parent 14814d7 commit a5627c4

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Bug report
22
description: ehrapy doesn’t do what it should? Please help us fix it!
33
#title: ...
44
labels:
5-
- bug
65
- triage
6+
type:
7+
- Bug
78
#assignees: []
89
body:
910
- type: checkboxes

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Feature request
22
description: Propose a new feature for ehrapy
3-
labels: enhancement
3+
type: Enhancement
44
body:
55
- type: textarea
66
id: description

tests/preprocessing/test_highly_variable_features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_highly_variable_features(clean_up_plots):
3434
assert "means" in adata.var.columns
3535
assert "variances" in adata.var.columns
3636
assert "variances_norm" in adata.var.columns
37-
37+
3838
adata = ep.dt.dermatology(encoded=True)
3939
ep.pp.knn_impute(adata)
4040
highly_variable_features(adata, top_features_percentage=0.5)

0 commit comments

Comments
 (0)