aboutsummaryrefslogtreecommitdiff
path: root/src/filledcurve.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/filledcurve.rs')
-rwxr-xr-xsrc/filledcurve.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/filledcurve.rs b/src/filledcurve.rs
index f79dbdd..ab86099 100755
--- a/src/filledcurve.rs
+++ b/src/filledcurve.rs
@@ -27,6 +27,9 @@ impl Default 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())