Skip to content

Commit 2b8291d

Browse files
committed
add a no-cover for py3 [ci skip]
1 parent 1d40cc2 commit 2b8291d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pre_commit/languages/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _shuffled(seq):
7575
fixed_random = random.Random()
7676
if six.PY2: # pragma: no cover (py2)
7777
fixed_random.seed(FIXED_RANDOM_SEED)
78-
else:
78+
else: # pragma: no cover (py3)
7979
fixed_random.seed(FIXED_RANDOM_SEED, version=1)
8080

8181
seq = list(seq)

0 commit comments

Comments
 (0)