Skip to content

Commit

Permalink
add a coverage pragma for CI purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
aecay committed Apr 7, 2021
1 parent ff9f9dc commit 8a59355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion immutabledict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

if sys.version_info >= (3, 7):
from typing import Mapping
else:
else: # pragma: no cover
from collections.abc import Mapping as _BaseMapping

class _MappingMeta(type):
Expand Down

0 comments on commit 8a59355

Please sign in to comment.