(self, key: str)
| 100 | return True |
| 101 | |
| 102 | def get(self, key: str) -> Optional[str]: |
| 103 | """ |
| 104 | """ |
| 105 | data = self.dict() |
| 106 | |
| 107 | if key in data: |
| 108 | return data[key] |
| 109 | |
| 110 | if self.verbose: |
| 111 | logger.warning("Key %s not found in %s.", key, self.dotenv_path) |
| 112 | |
| 113 | return None |
| 114 | |
| 115 | |
| 116 | def get_key( |