-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Format code in black style (ruff format)
Also includes small number of other lint-style cleanups.
- Loading branch information
Showing
19 changed files
with
615 additions
and
465 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,16 @@ | ||
from importlib.metadata import version | ||
|
||
# import warnings | ||
# import pandas as pd | ||
# import numpy as np | ||
# import math | ||
# import os | ||
import matplotlib as mpl | ||
|
||
from .utils import * | ||
from .rcmod import * | ||
from .relational import * | ||
from .trends import * | ||
from .rose import * | ||
from .stats import * | ||
from .trends import * | ||
from .utils import * | ||
|
||
# Capture the original matplotlib rcParams | ||
import matplotlib as mpl | ||
_orig_rc_params = mpl.rcParams.copy() | ||
|
||
# Determine the atmospy version | ||
__version__ = version('atmospy') | ||
__version__ = version("atmospy") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.