diff --git a/Test0.tiff b/Test0.tiff
deleted file mode 100644
index daf54854691b9ee73e3e785520f946dc3d9eec59..0000000000000000000000000000000000000000
Binary files a/Test0.tiff and /dev/null differ
diff --git a/Test1.tiff b/Test1.tiff
deleted file mode 100644
index 25628f376e8282521c2d91d3093f5af77c2df7d3..0000000000000000000000000000000000000000
Binary files a/Test1.tiff and /dev/null differ
diff --git a/tagplot.py b/tagplot.py
index 0f7bdbe71b8fd53e1c580f27f4bbf1b078206088..ff089604f13caf96282e413c8f748e41d110e3f0 100644
--- a/tagplot.py
+++ b/tagplot.py
@@ -1,5 +1,14 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
+"""
+Tag your plot with an ID.
+
+For publishing the tagged plot along your research data have a look at the
+module publish.
+
+Functions:
+    TagPlot(figure object, string) -> list
+"""
 
 import warnings
 from plotoptions import PlotOptions
@@ -17,10 +26,10 @@ def tagplot(figs, engine, prefix='', id_method=1, location='east'):
     ----------
     figs : list
         Figures that should be tagged.
-    prefix : string
-        Will be added as prefix to the ID.
     engine : string
         Plot engine which should be used to tag the plot.
+    prefix : string
+        Will be added as prefix to the ID.
     id_method : int, optional
         id_method for creating the ID. Create an ID by Unix time is referenced
         as 1, create a random ID with id_method=2. The default is 1.