(self, key: str)
| 110 | return True |
| 111 | |
| 112 | def get(self, key: str) -> Optional[str]: |
| 113 | """ """ |
| 114 | data = self.dict() |
| 115 | |
| 116 | if key in data: |
| 117 | return data[key] |
| 118 | |
| 119 | if self.verbose: |
| 120 | logger.warning("Key %s not found in %s.", key, self.dotenv_path) |
| 121 | |
| 122 | return None |
| 123 | |
| 124 | |
| 125 | def get_key( |