Skip to content

Commit

Permalink
Add unused import, that is actually used...
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik-Vogel committed May 15, 2019
1 parent e4b9260 commit 2e18e2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qcodes/utils/helpers.py
Expand Up @@ -7,7 +7,7 @@
import os
from collections.abc import Iterator, Sequence, Mapping
from copy import deepcopy
from typing import Dict, Any, TypeVar, Type
from typing import Dict, Any, TypeVar, Type, List
from contextlib import contextmanager
from asyncio import iscoroutinefunction
from inspect import signature
Expand Down Expand Up @@ -393,9 +393,9 @@ class DelegateAttributes:
2. keys of each dict in delegate_attr_dicts (in order)
3. attributes of each object in delegate_attr_objects (in order)
"""
delegate_attr_dicts = [] # type: List[str]
delegate_attr_objects = [] # type: List[str]
omit_delegate_attrs = [] # type: List[str]
delegate_attr_dicts: List[str] = []
delegate_attr_objects: List[str] = []
omit_delegate_attrs: List[str] = []

def __getattr__(self, key):
if key in self.omit_delegate_attrs:
Expand Down

0 comments on commit 2e18e2f

Please sign in to comment.