aboutsummaryrefslogtreecommitdiff
path: root/src/axis.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/axis.rs')
-rwxr-xr-xsrc/axis.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/axis.rs b/src/axis.rs
index 97fd0cb..142c7fb 100755
--- a/src/axis.rs
+++ b/src/axis.rs
@@ -155,6 +155,9 @@ where
}
impl<'a> Script for (Axis, &'a Properties) {
+ // Allow clippy::format_push_string even with older versions of rust (<1.62) which
+ // don't have it defined.
+ #[allow(clippy::all)]
fn script(&self) -> String {
let &(axis, properties) = self;
let axis_ = axis.display();