From f8ff465ef9c00545df6fa8738c5eeb301fc077c4 Mon Sep 17 00:00:00 2001
From: kienle <kienle@passcal.nmt.edu>
Date: Tue, 4 Mar 2025 14:29:54 -0700
Subject: [PATCH] Add documentation

---
 sohstationviewer/model/mseed_data/mseed.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sohstationviewer/model/mseed_data/mseed.py b/sohstationviewer/model/mseed_data/mseed.py
index 2b83c845..7c0d8da1 100644
--- a/sohstationviewer/model/mseed_data/mseed.py
+++ b/sohstationviewer/model/mseed_data/mseed.py
@@ -37,6 +37,8 @@ class MSeed(GeneralData):
             f"WHERE dataType='{self.data_type}'"
         )
         channels_db_info = execute_db_dict(channels_sql)
+        # dict containing some additional information about each channel. An
+        # example is whether to read all data points from a channel.
         self.channels_db_info = {
             channel_info['channel']: int(channel_info['readAllPoints'])
             for channel_info in channels_db_info
-- 
GitLab