From fe3134f3ee23e9f4691980391f1b169e1cea0d11 Mon Sep 17 00:00:00 2001
From: "Mayr, Hannes" <hannes.mayr@stud.tu-darmstadt.de>
Date: Tue, 3 Jan 2023 14:26:10 +0100
Subject: [PATCH] Remove type hints from doc string, they are already typed in
 the function definition.

---
 plotid/save_plot.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/plotid/save_plot.py b/plotid/save_plot.py
index 3b9c8f6..e147950 100644
--- a/plotid/save_plot.py
+++ b/plotid/save_plot.py
@@ -21,16 +21,16 @@ def save_plot(
 
     Parameters
     ----------
-    figure : list of/single figure object
+    figure :
         Figure that was tagged and now should be saved as picture.
-    plot_name : str or list of str
+    plot_name :
         Names of the files where the plots will be saved to.
-    extension : str
+    extension :
         File extension for the plot export.
 
     Returns
     -------
-    plot_path : list of str
+    plot_path :
         Names of the created pictures.
     """
     # Check if figs is a valid figure or a list of valid figures
-- 
GitLab