1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Disable assuming Optional type for values with None default (#16029)

https://www.python.org/dev/peps/pep-0484/#union-types
"Type checkers should move towards requiring the optional type to be
made explicit."
This commit is contained in:
Ville Skyttä
2018-08-17 21:22:49 +03:00
committed by Paulus Schoutsen
parent 2ad0bd4036
commit 3800f00564
9 changed files with 24 additions and 17 deletions

View File

@@ -302,7 +302,7 @@ class ConfigEntries:
return result
@callback
def async_entries(self, domain: str = None) -> List[ConfigEntry]:
def async_entries(self, domain: Optional[str] = None) -> List[ConfigEntry]:
"""Return all entries or entries for a specific domain."""
if domain is None:
return list(self._entries)