Skip to content

Commit c5ab8e5

Browse files
committed
update version in readme
1 parent 7239e27 commit c5ab8e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
`pip install fgpyo`
3939

40-
**Requires python 3.7+**
40+
**Requires python 3.8+**
4141

4242
See documentation on [fgpyo.readthedocs.org][rtd-link].
4343

fgpyo/util/inspect.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def dict_parse(dict_string: str) -> Dict[Any, Any]:
233233
union=type_,
234234
parsers=[_get_parser(cls, arg, parsers) for arg in typing.get_args(type_)],
235235
)
236-
elif typing.get_origin(type_) is Literal: # Py>=3.7.
236+
elif typing.get_origin(type_) is Literal:
237237
return types.make_literal_parser(
238238
type_,
239239
[_get_parser(cls, type(arg), parsers) for arg in typing.get_args(type_)],

0 commit comments

Comments
 (0)