diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d7cf4232db4..fdca9e42984 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -77,7 +77,7 @@ stages: - stage: Test condition: and(succeeded(), eq(dependencies.Check.outputs['Skip.result.start_main'], 'true')) - dependsOn: Check + dependsOn: ['Check', 'Style'] variables: AZURE_CI: 'true' jobs: diff --git a/mne/annotations.py b/mne/annotations.py index b9dc0c2ccc4..7f3024e2e58 100644 --- a/mne/annotations.py +++ b/mne/annotations.py @@ -244,7 +244,7 @@ class Annotations(object): ``BAD_ACQ_SKIP`` annotation leads to specific reading/writing file behaviours. See :meth:`mne.io.read_raw_fif` and :meth:`Raw.save() ` notes for details. - """ # noqa: E501 + """ def __init__(self, onset, duration, description, orig_time=None, ch_names=None): # noqa: D102