Skip to content

Commit 6ab2241

Browse files
committed
Lint
1 parent 58ca97e commit 6ab2241

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/documents.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def _on_hover_gutter_async(self, point: int) -> None:
485485
max_severity_level = min(userprefs().show_diagnostics_severity_level, DiagnosticSeverity.Information)
486486
for sb, diagnostics in self.diagnostics_intersecting_async(self.view.line(point))[0]:
487487
diagnostics_with_config.extend((sb.session.config, diagnostic) for diagnostic in diagnostics
488-
if diagnostic_severity(diagnostic) <= max_severity_level)
488+
if diagnostic_severity(diagnostic) <= max_severity_level)
489489
if diagnostics_with_config:
490490
diagnostics_with_config.sort(key=lambda d: diagnostic_severity(d[1]))
491491
content += '<div class="diagnostics">'

0 commit comments

Comments
 (0)