Skip to content

Commit db908f6

Browse files
authored
Fixing issues with linter (#193)
1 parent 3319b09 commit db908f6

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.github/workflows/check_links.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@ name: Markdown Link Check
33
on:
44
push:
55
branches:
6-
- 'main'
6+
- "main"
77
pull_request:
88
branches:
9-
- '*'
9+
- "*"
10+
schedule:
11+
- cron: "0 0 * * 0" # Runs at 00:00 on Sunday
1012

1113
jobs:
1214
markdown-link-check:
1315
runs-on: ubuntu-latest
1416
steps:
15-
- uses: actions/checkout@v2
16-
- uses: ruzickap/action-my-markdown-link-checker@v1
17+
- uses: actions/checkout@v2
18+
- uses: ruzickap/action-my-markdown-link-checker@v1
19+
with:
20+
config_file: .mlc_config.json

.mlc_config.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"aliveStatusCodes": [
3+
200,
4+
206,
5+
403
6+
]
7+
}

src/neurotechdevkit/imaging/beamform.py

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def beamform_delay_and_sum(
6363
# Check input arguments
6464
if iq_signals.ndim == 2:
6565
num_time_samples, num_channels = iq_signals.shape
66+
num_echoes = 1
6667
elif iq_signals.ndim == 3:
6768
num_time_samples, num_channels, num_echoes = iq_signals.shape
6869
else:

0 commit comments

Comments
 (0)