Skip to content

Commit 9d20e3d

Browse files
[pre-commit.ci] pre-commit autoupdate (#1165)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 23.12.1 → 24.1.1](psf/black@23.12.1...24.1.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Co Quach <43968221+daico007@users.noreply.github.com>
1 parent ea6e756 commit 9d20e3d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+61
-7
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
- id: trailing-whitespace
1818
exclude: setup.cfg
1919
- repo: https://github.com/psf/black
20-
rev: 23.12.1
20+
rev: 24.1.1
2121
hooks:
2222
- id: black
2323
args: [--line-length=80]

mbuild/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""mBuild: a hierarchical, component based molecule builder."""
2+
23
from mbuild.box import Box
34
from mbuild.coarse_graining import coarse_grain
45
from mbuild.compound import *

mbuild/box.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""mBuild box module."""
2+
23
from warnings import warn
34

45
import numpy as np

mbuild/coarse_graining.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Tools for coarse-grained systems."""
2+
23
from collections import OrderedDict
34
from copy import deepcopy
45

mbuild/compound.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module for working with mBuild Compounds."""
2+
23
__all__ = ["clone", "Compound", "Particle"]
34

45
import itertools

mbuild/conversion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module for handling conversions in mBuild."""
2+
23
import os
34
import sys
45
from collections import defaultdict

mbuild/coordinate_transform.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Coordinate transformation functions."""
2+
23
from warnings import simplefilter, warn
34

45
simplefilter("always", DeprecationWarning)

mbuild/formats/cassandramcf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
https://cassandra-mc.readthedocs.io/en/latest/guides/input_files.html#molecular-connectivity-file
44
"""
5+
56
from __future__ import division
67

78
import warnings

mbuild/formats/gsdwriter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
https://gsd.readthedocs.io/en/stable/
44
"""
5+
56
import numpy as np
67

78
from mbuild.utils.geometry import coord_shift

mbuild/formats/hoomd_forcefield.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""HOOMD v3 forcefield format."""
2+
23
import itertools
34
import operator
45
import warnings

0 commit comments

Comments
 (0)