From b3aa805c064f6c07d0780c815d92960484999afc Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 13 May 2022 07:27:36 -0400 Subject: test: remove version-specfic skips we no longer need --- coverage/sqldata.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'coverage/sqldata.py') diff --git a/coverage/sqldata.py b/coverage/sqldata.py index aa4002a7..5a2de838 100644 --- a/coverage/sqldata.py +++ b/coverage/sqldata.py @@ -501,9 +501,6 @@ class CoverageData(SimpleReprMixin): self._set_context_id() for filename, arcs in arc_data.items(): file_id = self._file_id(filename, add=True) - from coverage import env - if env.PYVERSION == (3, 11, 0, "alpha", 4, 0): - arcs = [(a, b) for a, b in arcs if a is not None and b is not None] data = [(file_id, self._current_context_id, fromno, tono) for fromno, tono in arcs] con.executemany( "insert or ignore into arc " + -- cgit v1.2.1