From 859731b644bfc6ae8fd697f8d0c83c724d727dd1 Mon Sep 17 00:00:00 2001
From: Theophile GENTILHOMME <tgentilhomme@jurasix08.idiap.ch>
Date: Mon, 23 Apr 2018 09:11:29 +0200
Subject: [PATCH] Remove self._kwargs attribute

---
 bob/bio/base/script/figure.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bob/bio/base/script/figure.py b/bob/bio/base/script/figure.py
index e65c9d31..46aebc45 100644
--- a/bob/bio/base/script/figure.py
+++ b/bob/bio/base/script/figure.py
@@ -202,8 +202,8 @@ class Hist(measure_figure.Hist):
     def _setup_hist(self, neg, pos):
         self._title_base = 'Bio scores'
         self._density_hist(
-            pos[0], label='Genuines', alpha=0.9, color='C2', **self._kwargs
+            pos[0], label='Genuines', alpha=0.9, color='C2'
         )
         self._density_hist(
-            neg[0], label='Zero-effort impostors', alpha=0.8, color='C0', **self._kwargs
+            neg[0], label='Zero-effort impostors', alpha=0.8, color='C0'
         )
-- 
GitLab