summaryrefslogtreecommitdiff
path: root/grc/core/utils/extract_docs.py
diff options
context:
space:
mode:
authorClayton Smith <argilo@gmail.com>2020-10-03 12:34:28 -0400
committerMartin Braun <martin@gnuradio.org>2020-10-05 09:36:11 +0200
commitb360284d9b40799f1920929453e2db6e6384ae4e (patch)
treed0b6a4a9195c2cf62fd4a13c69deb52b6b14c631 /grc/core/utils/extract_docs.py
parent5f618c67a9f8790337ca6b8b80575d02385e8ae9 (diff)
grc: remove six
Diffstat (limited to 'grc/core/utils/extract_docs.py')
-rw-r--r--grc/core/utils/extract_docs.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/grc/core/utils/extract_docs.py b/grc/core/utils/extract_docs.py
index 8389c29e84..09bcaeb7c7 100644
--- a/grc/core/utils/extract_docs.py
+++ b/grc/core/utils/extract_docs.py
@@ -14,9 +14,7 @@ import threading
import json
import random
import itertools
-
-import six
-from six.moves import queue, filter, range
+import queue
###############################################################################
@@ -276,7 +274,7 @@ if __name__ == '__worker__':
elif __name__ == '__main__':
def callback(key, docs):
print(key)
- for match, doc in six.iteritems(docs):
+ for match, doc in docs.items():
print('-->', match)
print(str(doc).strip())
print()