Skip to content

Commit

Permalink
Linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
DailyDreaming committed Jan 11, 2024
1 parent 4d23704 commit cd59ab4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/toil/lib/ec2nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import shutil
import enlighten

from typing import Dict, List, Tuple, Union
from typing import Dict, List, Tuple, Union, Any


logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -176,7 +176,7 @@ def download_region_json(filename: str, region: str = 'us-east-1') -> None:
file.write(data)


def reduce_region_json_size(filename:str):
def reduce_region_json_size(filename:str) -> List[Dict[str, Any]]:
"""
Deletes information in the json file that we don't need, and rewrites it. This makes the file smaller.
Expand Down

0 comments on commit cd59ab4

Please sign in to comment.