1 parent c1b5b7c commit 208430cCopy full SHA for 208430c
1 file changed
ocr_utils.py
@@ -116,14 +116,15 @@ def get_list(pathName="fonts.zip",input_filters_dict={}):
116
117
Returns
118
--------------
119
- a dataframe of all the all the unique lines in the dataset
+ a dataframe of all the all the unique lines in the dataset.
120
121
Example:
122
123
print(ocr_utils.get_list(columns=('font','fontVariant')))
124
125
'''
126
- # speed up list if only the font list is needed
+
127
+ # speed up list if only the font list is needed
128
try:
129
if (len(input_filters_dict)==1) and (len(input_filters_dict['font'])==0):
130
with ZipFile(pathName, 'r') as myzip:
0 commit comments