Skip to content

Commit c9cdd84

Browse files
authored
modify forward_refs_to_types to fix issue 181 (#182)
1 parent 980ef6e commit c9cdd84

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

simple_parsing/annotation_utils/get_field_annotations.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from contextlib import contextmanager
77
from dataclasses import InitVar
88
from logging import getLogger as get_logger
9-
from typing import Any, Dict, Iterator, Optional, get_type_hints
9+
from typing import Any, Dict, Iterator, Optional, get_type_hints, TypeVar
1010

1111
logger = get_logger(__name__)
1212

@@ -18,6 +18,7 @@
1818
"dict": typing.Dict,
1919
"list": typing.List,
2020
"type": typing.Type,
21+
"D": TypeVar("D"),
2122
}
2223

2324

test/test_issue_181.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from __future__ import annotations
2+
from simple_parsing import Serializable, ArgumentParser
3+
from dataclasses import dataclass
4+
import pytest
5+
6+
@dataclass
7+
class MyArguments(Serializable):
8+
arg1: str = 'this_argment'
9+
10+
@pytest.mark.parametrize(
11+
'sys_argv, result', [
12+
(['test.py'], 'this_argment'),
13+
(['test.py', '--arg1', 'test2'], 'test2')
14+
],
15+
)
16+
def test_simple_parsing(sys_argv, result):
17+
parser = ArgumentParser()
18+
parser.add_arguments(MyArguments, 'myargs')
19+
args, _ = parser.parse_known_args(sys_argv)
20+
assert args.myargs.arg1 == result

0 commit comments

Comments
 (0)