Returns whether or not a variable should be imported.
(k)
| 195 | |
| 196 | |
| 197 | def _validate_local(k): |
| 198 | # type: (str) -> bool |
| 199 | """Returns whether or not a variable should be imported.""" |
| 200 | return k[0] != "_" and k not in ["range", "map"] |
| 201 | |
| 202 | |
| 203 | # This is ~/.config/scapy |
no outgoing calls
no test coverage detected
searching dependent graphs…