Skip to content

Commit

Permalink
ignore F401 in all __init__ files
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjonesBSU committed May 2, 2024
1 parent 21c857c commit 3a8bfe2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions gmso/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ruff: noqa: F401
"""GMSO: General Molecular Simulation Object."""

from .core.angle import Angle
Expand Down
1 change: 1 addition & 0 deletions gmso/abc/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# ruff: noqa: F401
from gmso.abc.serialization_utils import unyt_to_dict
1 change: 1 addition & 0 deletions gmso/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# ruff: noqa: F401
"""Core objects representing a GMSO topology."""
1 change: 1 addition & 0 deletions gmso/external/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ruff: noqa: F401
"""Support for various in-memory representations of chemical systems."""

from .convert_hoomd import (
Expand Down
1 change: 1 addition & 0 deletions gmso/formats/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ruff: noqa: F401
"""Readers and writers for various file formats."""

from gmso.utils.io import has_ipywidgets
Expand Down
1 change: 1 addition & 0 deletions gmso/lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# ruff: noqa: F401
"""Internal store of repeatedly used files."""
1 change: 1 addition & 0 deletions gmso/parameterization/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ruff: noqa: F401
"""GMSO functions that generate parameterized Topologies."""

from .parameterize import apply
1 change: 1 addition & 0 deletions gmso/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# ruff: noqa: F401
"""Utility methods for interacting with/handling gmso objects."""

0 comments on commit 3a8bfe2

Please sign in to comment.