summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-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}