mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-20 04:29:47 +00:00
whopps
This commit is contained in:
parent
6bed3f0b18
commit
773341798f
1 changed files with 4 additions and 1 deletions
|
|
@ -326,7 +326,7 @@ impl<'db> ConstraintSet<'db> {
|
|||
}
|
||||
|
||||
pub(crate) fn display(self, db: &'db dyn Db) -> impl Display {
|
||||
self.node.simplify(db).display(db)
|
||||
self.node.simplify_for_display(db).display(db)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -2335,6 +2335,9 @@ impl<'db> SequentMap<'db> {
|
|||
}
|
||||
}
|
||||
|
||||
if first {
|
||||
f.write_str("[no sequents]")?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue