Every line of 'type casting in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
154 def cast_python_value(self, value): 155 cls = getattr(np, self.type_name) 156 if self.unit: 157 return cls(value, self.unit) 158 else: 159 return cls(value)