(self, section, key, **kwargs)
| 428 | ) |
| 429 | |
| 430 | def getfloat(self, section, key, **kwargs): |
| 431 | val = self.get(section, key, **kwargs) |
| 432 | |
| 433 | try: |
| 434 | return float(val) |
| 435 | except ValueError: |
| 436 | raise AirflowConfigException( |
| 437 | f'Failed to convert value to float. Please check "{key}" key in "{section}" section. ' |
| 438 | f'Current value: "{val}".' |
| 439 | ) |
| 440 | |
| 441 | def getimport(self, section, key, **kwargs): # noqa |
| 442 | """ |