aboutsummaryrefslogtreecommitdiff
path: root/src/curve.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/curve.rs')
-rwxr-xr-xsrc/curve.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/curve.rs b/src/curve.rs
index bbddeff..a5766ee 100755
--- a/src/curve.rs
+++ b/src/curve.rs
@@ -38,6 +38,9 @@ impl CurveDefault<Style> for Properties {
}
impl Script for 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 mut script = if let Some(axes) = self.axes {
format!("axes {} ", axes.display())