Skip to content
Snippets Groups Projects
Unverified Commit 79c1f973 authored by Jonathan de Jong's avatar Jonathan de Jong Committed by GitHub
Browse files

Pre-emptively fix synapse.storage.types.Connection for future mypy release (#8577)

Fix the Connection protocol according to typeshed's assertions about sqlite3.Connection
parent 0afd8358
No related branches found
No related tags found
No related merge requests found
Adjust a protocol-type definition to fit `sqlite3` assertions.
\ No newline at end of file
...@@ -160,7 +160,7 @@ class LoggingDatabaseConnection: ...@@ -160,7 +160,7 @@ class LoggingDatabaseConnection:
self.conn.__enter__() self.conn.__enter__()
return self return self
def __exit__(self, exc_type, exc_value, traceback) -> bool: def __exit__(self, exc_type, exc_value, traceback) -> Optional[bool]:
return self.conn.__exit__(exc_type, exc_value, traceback) return self.conn.__exit__(exc_type, exc_value, traceback)
# Proxy through any unknown lookups to the DB conn class. # Proxy through any unknown lookups to the DB conn class.
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from typing import Any, Iterable, Iterator, List, Tuple from typing import Any, Iterable, Iterator, List, Optional, Tuple
from typing_extensions import Protocol from typing_extensions import Protocol
...@@ -65,5 +65,5 @@ class Connection(Protocol): ...@@ -65,5 +65,5 @@ class Connection(Protocol):
def __enter__(self) -> "Connection": def __enter__(self) -> "Connection":
... ...
def __exit__(self, exc_type, exc_value, traceback) -> bool: def __exit__(self, exc_type, exc_value, traceback) -> Optional[bool]:
... ...
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment