summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorÁrni Dagur <arni@dagur.eu>2020-12-16 17:03:32 +0000
committerÁrni Dagur <arni@dagur.eu>2020-12-16 17:03:32 +0000
commit6102ed1a1e75c218c87bd1f01194952a2d0614de (patch)
treebd1b9fcbdb8c43cc5e838b9f47a635515bfffea8 /src
parent08407005bbc120dcc92197936c7b379fa6759493 (diff)
Correctly check code formatting in CI
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7acac21..bef0fb2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -100,12 +100,7 @@ impl PyObjectProtocol for BlockerResult {
100 fn __repr__(&self) -> PyResult<String> { 100 fn __repr__(&self) -> PyResult<String> {
101 Ok(format!( 101 Ok(format!(
102 "BlockerResult({}, {}, {:?}, {:?}, {:?}, {:?})", 102 "BlockerResult({}, {}, {:?}, {:?}, {:?}, {:?})",
103 self.matched, 103 self.matched, self.important, self.redirect, self.exception, self.filter, self.error
104 self.important,
105 self.redirect,
106 self.exception,
107 self.filter,
108 self.error
109 )) 104 ))
110 } 105 }
111} 106}