Skip to content

Commit e95c311

Browse files
authored
Merge pull request #118 from cphyc/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 7983ab4 + 223e2d3 commit e95c311

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
- id: trailing-whitespace
1010
- id: end-of-file-fixer
1111
- repo: https://github.com/psf/black
12-
rev: 22.12.0
12+
rev: 23.1.0
1313
hooks:
1414
- id: black
1515
language_version: python3
@@ -28,6 +28,6 @@ repos:
2828
hooks:
2929
- id: mypy
3030
- repo: https://github.com/charliermarsh/ruff-pre-commit
31-
rev: v0.0.237
31+
rev: v0.0.242
3232
hooks:
3333
- id: ruff

labellines/line_label.py

-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ def __init__(
115115

116116
# Apply outline effect
117117
if outline_color is not None:
118-
119118
if outline_color == "auto":
120119
outline_color = line.axes.get_facecolor()
121120

labellines/utils.py

-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def ensure_float(value):
3232
# From https://www.geeksforgeeks.org/maximum-bipartite-matching/
3333
class GFG:
3434
def __init__(self, graph):
35-
3635
# residual graph
3736
self.graph = graph
3837
self.ppl = len(graph)
@@ -41,14 +40,11 @@ def __init__(self, graph):
4140
# A DFS based recursive function that returns true if a matching for vertex
4241
# u is possible
4342
def bpm(self, u, match_r, seen):
44-
4543
# Try every job one by one
4644
for v in range(self.jobs):
47-
4845
# If applicant u is interested
4946
# in job v and v is not seen
5047
if self.graph[u][v] and not seen[v]:
51-
5248
# Mark v as visited
5349
seen[v] = True
5450

@@ -73,7 +69,6 @@ def maxBPM(self):
7369
# Count of jobs assigned to applicants
7470
result = 0
7571
for i in range(self.ppl):
76-
7772
# Mark all jobs as not seen for next applicant.
7873
seen = [False] * self.jobs
7974

0 commit comments

Comments
 (0)