Skip to content

Commit

Permalink
Add typing to make_csv dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-fernandes committed Aug 13, 2024
1 parent d22622d commit 3fdb4c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mx_bluesky/bimorph_optimisation_plan/data_saver.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from datetime import datetime
from typing import Callable
from typing import Callable, Dict


def generate_filename(
Expand Down Expand Up @@ -41,7 +41,7 @@ def make_csv(docs: list) -> str:
Returms:
A string of given list's csv equivalent
"""
csv_dict = {}
csv_dict: Dict[str, list] = {}
headers = []

for doc in docs:
Expand Down

0 comments on commit 3fdb4c6

Please sign in to comment.