Skip to content

Commit

Permalink
enhancement (#47): stop using OrderedDict
Browse files Browse the repository at this point in the history
  • Loading branch information
fsoubelet committed Sep 17, 2020
1 parent 1dbe3f8 commit 82c0e2d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tfs/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import logging
import pathlib
import shlex
from collections import OrderedDict
from contextlib import suppress
from typing import Union

Expand Down Expand Up @@ -116,7 +115,7 @@ def read_tfs(tfs_file_path: Union[pathlib.Path, str], index: str = None) -> TfsD
"""
tfs_file_path = pathlib.Path(tfs_file_path)
LOGGER.debug(f"Reading path: {tfs_file_path.absolute()}")
headers = OrderedDict()
headers = {}
rows_list = []
column_names = column_types = None

Expand Down

0 comments on commit 82c0e2d

Please sign in to comment.