Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
CoryMartin-NOAA committed Nov 26, 2024
1 parent 9127a4a commit 8f22410
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
11 changes: 3 additions & 8 deletions ush/python/pygfs/task/aero_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,15 @@
from logging import getLogger
from pprint import pformat
from netCDF4 import Dataset
from typing import Dict, List, Any, Optional
from typing import Dict, List

from wxflow import (AttrDict,
FileHandler,
add_to_datetime, to_fv3time, to_timedelta,
chdir,
to_fv3time,
Task,
YAMLFile, parse_j2yaml, save_as_yaml,
logit,
Executable,
WorkflowException)
YAMLFile, parse_j2yaml,
logit)
from pygfs.jedi import Jedi

logger = getLogger(__name__.split('.')[-1])
Expand All @@ -41,8 +38,6 @@ def __init__(self, config):
----------
config: Dict
dictionary object containing task configuration
yaml_name: str, optional
name of YAML file for JEDI configuration
Returns
----------
Expand Down
10 changes: 4 additions & 6 deletions ush/python/pygfs/task/aero_bmatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@

import os
from logging import getLogger
from pprint import pformat
from typing import List, Dict, Any, Union, Optional
from typing import List, Dict

from wxflow import (AttrDict, FileHandler, rm_p,
add_to_datetime, to_fv3time, to_timedelta,
to_fv3time, chdir, Executable, WorkflowException,
parse_j2yaml, save_as_yaml, logit, Task)
from wxflow import (AttrDict, FileHandler,
add_to_datetime, to_timedelta,
parse_j2yaml, logit, Task)
from pygfs.jedi import Jedi

logger = getLogger(__name__.split('.')[-1])
Expand Down

0 comments on commit 8f22410

Please sign in to comment.