Skip to content

Commit

Permalink
mypy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andgineer committed Sep 3, 2021
1 parent cd97e2b commit 5b79e7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bombard/campaign_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

class Yaml:
@staticmethod
def load(*args: Any, **kwargs: Any) -> None:
def load(*args: Any, **kwargs: Any) -> Any:
"""
Mimics yaml interface for seamless injection
"""
return original_yaml.load(*args, **kwargs, Loader=IncludesLoader)

@staticmethod
def full_load(*args: Any, **kwargs: Any) -> None:
def full_load(*args: Any, **kwargs: Any) -> Any:
"""
Mimics yaml interface for seamless injection
"""
Expand Down

0 comments on commit 5b79e7f

Please sign in to comment.