From 196075d2c1d40a76493ee75347bb1527b5e4ad80 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Fri, 26 Jan 2024 08:20:16 -0500 Subject: [PATCH] Run black. --- cubids/cli.py | 1 + cubids/constants.py | 1 + cubids/cubids.py | 1 + cubids/metadata_merge.py | 1 + cubids/tests/test_bond.py | 1 + cubids/tests/utils.py | 1 + cubids/utils.py | 1 + cubids/validator.py | 1 + cubids/workflows.py | 1 + 9 files changed, 9 insertions(+) diff --git a/cubids/cli.py b/cubids/cli.py index 764a0374..6fde0885 100644 --- a/cubids/cli.py +++ b/cubids/cli.py @@ -1,4 +1,5 @@ """Console script for cubids.""" + import argparse import logging import os diff --git a/cubids/constants.py b/cubids/constants.py index 3efbf5be..9acd8762 100644 --- a/cubids/constants.py +++ b/cubids/constants.py @@ -1,4 +1,5 @@ """Constants for CuBIDS.""" + # Names of identifier variables. # Used to place KeyGroup and ParamGroup at the beginning of a dataframe, # but both are hardcoded in the relevant function. diff --git a/cubids/cubids.py b/cubids/cubids.py index e04482d9..59950405 100644 --- a/cubids/cubids.py +++ b/cubids/cubids.py @@ -1,4 +1,5 @@ """Main module.""" + import csv import json import os diff --git a/cubids/metadata_merge.py b/cubids/metadata_merge.py index a7b01396..5bd3c957 100644 --- a/cubids/metadata_merge.py +++ b/cubids/metadata_merge.py @@ -1,4 +1,5 @@ """Tools for merging metadata.""" + import json from collections import defaultdict from copy import deepcopy diff --git a/cubids/tests/test_bond.py b/cubids/tests/test_bond.py index 5a0c3aac..15bfc35f 100644 --- a/cubids/tests/test_bond.py +++ b/cubids/tests/test_bond.py @@ -1,4 +1,5 @@ """Tests for `cubids` package.""" + import json import os import subprocess diff --git a/cubids/tests/utils.py b/cubids/tests/utils.py index 6f786e46..22263f9b 100644 --- a/cubids/tests/utils.py +++ b/cubids/tests/utils.py @@ -1,4 +1,5 @@ """Utility functions for CuBIDS' tests.""" + import hashlib import json import os diff --git a/cubids/utils.py b/cubids/utils.py index fcd3ad07..09c02e34 100644 --- a/cubids/utils.py +++ b/cubids/utils.py @@ -1,4 +1,5 @@ """Miscellaneous utility functions for CuBIDS.""" + import re from pathlib import Path diff --git a/cubids/validator.py b/cubids/validator.py index d539cb1c..01dad11c 100644 --- a/cubids/validator.py +++ b/cubids/validator.py @@ -1,4 +1,5 @@ """Methods for validating BIDS datasets.""" + import glob import json import logging diff --git a/cubids/workflows.py b/cubids/workflows.py index 527b5de5..7984216b 100644 --- a/cubids/workflows.py +++ b/cubids/workflows.py @@ -1,4 +1,5 @@ """First order workflows in CuBIDS.""" + import json import logging import os