From 44cd0cd49b64cbb3d429e43e47b170f3e8ffd799 Mon Sep 17 00:00:00 2001
From: ViaFerrata <michimoser@onlinehome.de>
Date: Thu, 17 Jan 2019 16:01:35 +0100
Subject: [PATCH] Fix docs of default_config.

---
 orcasong/default_config.toml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/orcasong/default_config.toml b/orcasong/default_config.toml
index 52e1972..e2ae996 100644
--- a/orcasong/default_config.toml
+++ b/orcasong/default_config.toml
@@ -20,7 +20,7 @@
 #        Compression level for the compression filter that is used for saving the OrcaSong output to a .h5 file.
 #    n_bins : tuple of int
 #        Declares the number of bins that should be used for each dimension, e.g. (x,y,z,t).
-#        The option should be written as string, e.g. '11,13,18,60'.
+#        The option should be written as a list of ints, e.g. [11,13,18,60].
 #    det_geo : str
 #        Declares what detector geometry should be used for the binning. E.g. 'Orca_115l_23m_h_9m_v'.
 #    do2d : bool
@@ -78,7 +78,7 @@ output_dirpath = './'
 chunksize = 32
 complib = 'zlib'
 complevel = 1
-n_bins = '11,13,18,60'
+n_bins = [11,13,18,60]
 det_geo = 'Orca_115l_23m_h_9m_v'
 do2d = false
 do2d_plots = false
-- 
GitLab