We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72faad3 commit 1514410Copy full SHA for 1514410
sigmf/__init__.py
@@ -5,7 +5,7 @@
5
# SPDX-License-Identifier: LGPL-3.0-or-later
6
7
# version of this python module
8
-__version__ = "1.2.3"
+__version__ = "1.2.4"
9
# matching version of the SigMF specification
10
__specification__ = "1.2.0"
11
sigmf/sigmffile.py
@@ -340,7 +340,7 @@ def get_captures(self):
340
"""
341
Returns a list of dictionaries representing all captures.
342
343
- return [x for x in self._metadata.get(self.CAPTURE_KEY, [])]
+ return self._metadata.get(self.CAPTURE_KEY, [])
344
345
def get_capture_info(self, index):
346
0 commit comments