Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aerorahul committed Feb 28, 2024
1 parent ef583a3 commit d4e9042
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/wxflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
from .task import Task
from .template import Template, TemplateConstants
from .timetools import *
from .yaml_file import YAMLFile, save_as_yaml, dump_as_yaml, vanilla_yaml, parse_yaml, parse_j2yaml
from .yaml_file import (YAMLFile, dump_as_yaml, parse_j2yaml, parse_yaml,
save_as_yaml, vanilla_yaml)

__docformat__ = "restructuredtext"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/wxflow/yaml_file.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import datetime
import json
import os
import sys
import re
import sys
from typing import Any, Dict, List

import yaml
Expand Down
2 changes: 1 addition & 1 deletion tests/test_yaml_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import pytest

from wxflow import (YAMLFile, parse_j2yaml, save_as_yaml)
from wxflow import YAMLFile, parse_j2yaml, save_as_yaml

host_yaml = """
host:
Expand Down

0 comments on commit d4e9042

Please sign in to comment.