Skip to content

Commit c4e1a61

Browse files
committed
Add typing in so mypy can actually catch the incorrect BASIC_ALLOWED_ATTRS
1 parent 32f1bfc commit c4e1a61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

simpleeval.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@
107107
import sys
108108
import warnings
109109
from random import random
110+
from typing import Type, Dict, Set, Union
110111

111112
########################################
112113
# Module wide 'globals'
@@ -144,7 +145,7 @@
144145

145146
# Opt-in type safety experiment. Will be opt-out in 2.x
146147

147-
BASIC_ALLOWED_ATTRS = {
148+
BASIC_ALLOWED_ATTRS: Dict[Union[Type, None], Set] = {
148149
int: {
149150
"as_integer_ratio",
150151
"bit_length",

0 commit comments

Comments
 (0)