From f7ded87bd8c9084f0145f5d5e8adf187c7eb2ae6 Mon Sep 17 00:00:00 2001 From: Itsuki Toyota Date: Sat, 25 Jul 2020 15:02:26 +0900 Subject: [PATCH] Remove superfluous debug flag --- lib/Chart/Gnuplot.pm6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Chart/Gnuplot.pm6 b/lib/Chart/Gnuplot.pm6 index 7ff4ac0..bb195e7 100644 --- a/lib/Chart/Gnuplot.pm6 +++ b/lib/Chart/Gnuplot.pm6 @@ -988,7 +988,7 @@ Runs a given C<$command>. If there are no appropriate interfaces, this method wi use v6; use Chart::Gnuplot; - my $gnu = Chart::Gnuplot.new(:terminal("png"), :filename("recprec.png"), :debug); + my $gnu = Chart::Gnuplot.new(:terminal("png"), :filename("recprec.png")); $gnu.title(:text("Recall-Precision Curve")); $gnu.ylabel(:label("Precision")); $gnu.xlabel(:label("Recall"));