Skip to content

Commit 09feb42

Browse files
committed
Merge branch 'master' of github.com:daffidwilde/matching
2 parents 1f0c7ce + e8f71df commit 09feb42

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ Matching
77
.. image:: https://coveralls.io/repos/github/daffidwilde/matching/badge.svg?branch=master
88
:target: https://coveralls.io/github/daffidwilde/matching?branch=master
99

10+
.. image:: https://travis-ci.com/daffidwilde/matching.svg?branch=master
11+
:target: https://travis-ci.com/daffidwilde/matching
12+
13+
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
14+
:target: https://github.com/ambv/black
15+
1016

1117
A package for solving matching games.
1218
-------------------------------------

tests/hospital_resident/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ def _make_match(resident_names, hospital_names, capacities, seed):
9090
min_size=3,
9191
max_size=3,
9292
),
93-
seed=integers(min_value=0, max_value=2**32-1),
93+
seed=integers(min_value=0, max_value=2 ** 32 - 1),
9494
)

tests/stable_marriage/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ def _make_players(suitor_names, reviewer_names, seed):
5353
player_names=_get_player_names(
5454
suitor_pool=["A", "B", "C"], reviewer_pool=["X", "Y", "Z"]
5555
),
56-
seed=integers(min_value=0, max_value=2**32-1),
56+
seed=integers(min_value=0, max_value=2 ** 32 - 1),
5757
)

0 commit comments

Comments
 (0)