Skip to content

Commit

Permalink
Make pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper authored and mcflugen committed Oct 2, 2024
1 parent 693c0ae commit 18b3b20
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions pymt/component/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
100.0
>>> comp.finalize()
"""

import warnings

import yaml
Expand Down
1 change: 1 addition & 0 deletions pymt/events/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
hello!
hello from finalize
"""

from configparser import ConfigParser
from io import StringIO

Expand Down
1 change: 1 addition & 0 deletions pymt/events/port.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Wrap a port as a :class:`Timeline` event.
"""

import os
import sys

Expand Down
2 changes: 1 addition & 1 deletion pymt/framework/bmi_bridge.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Bridge between BMI and a PyMT component."""

import ctypes
import json
import os
Expand Down Expand Up @@ -91,7 +92,6 @@ def __str__(self):


class _BmiCapV1:

"""Add methods for backward compatibility."""

@staticmethod
Expand Down
1 change: 1 addition & 0 deletions pymt/framework/services.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Access to framework services.
"""

import warnings

_COMPONENT_CLASSES = {}
Expand Down
1 change: 1 addition & 0 deletions pymt/grids/structured.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
>>> g.get_connectivity()
array([1, 0, 2, 3, 5, 4, 6, 7])
"""

import warnings

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions pymt/timeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
('event', 0)
('event', 2)
"""

import bisect


Expand Down
1 change: 1 addition & 0 deletions tests/framework/test_bmi_ugrid.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests for the pymt.framwork.bmi_ugrid module."""

import numpy as np
import xarray as xr

Expand Down

0 comments on commit 18b3b20

Please sign in to comment.