Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
edasubert committed Jan 30, 2024
1 parent b2ea9a3 commit e27347c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions bluepysnap/circuit_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
The idea here is to not depend on libsonata if possible, so we can use this in all situations
"""

import logging
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions bluepysnap/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The project's command line launcher."""

import functools
import logging

Expand Down
1 change: 1 addition & 0 deletions bluepysnap/query.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module to process search queries of nodes/edges."""

import operator
from collections.abc import Mapping
from copy import deepcopy
Expand Down
1 change: 1 addition & 0 deletions bluepysnap/schemas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Schemas and schema parser."""

from bluepysnap.schemas.schemas import (
validate_circuit_schema,
validate_edges_schema,
Expand Down
1 change: 1 addition & 0 deletions bluepysnap/schemas/schemas.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functions for schema based validation of circuit files."""

from pathlib import Path

import h5py
Expand Down
1 change: 1 addition & 0 deletions bluepysnap/simulation_validation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Standalone module that validates Sonata simulation. See ``validate-simulation`` function."""

import contextlib
import io
import os
Expand Down
1 change: 1 addition & 0 deletions tests/data/reporting/create_reports.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Taken from the libsonata lib."""

import h5py
import numpy as np

Expand Down

0 comments on commit e27347c

Please sign in to comment.