Skip to content

Commit

Permalink
FIX: Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Sep 12, 2024
1 parent 33a18cb commit 9eaf258
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mne_bids_pipeline/tests/test_documented.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import re
import sys
from pathlib import Path
from types import CodeType

import yaml

Expand All @@ -23,7 +22,7 @@ def test_options_documented():
with open(root_path / "_config.py") as fid:
contents = fid.read()
contents = ast.parse(contents)
assert isinstance(contents, CodeType)
assert isinstance(contents, ast.Module), type(contents)
in_config_list = [
item.target.id for item in contents.body if isinstance(item, ast.AnnAssign)
]
Expand Down

0 comments on commit 9eaf258

Please sign in to comment.