Skip to content

Commit 3cb048c

Browse files
committed
Enable all columns and remove problematic field
1 parent c5e9060 commit 3cb048c

File tree

1 file changed

+21
-29
lines changed

1 file changed

+21
-29
lines changed
Lines changed: 21 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,27 @@
11
from typing import Union
22

3-
# SUBMISSION_COLUMNS = [
4-
# ["author", str],
5-
# ["author_flair_text", Union[str, None]],
6-
# ["clicked", bool],
7-
# ["created_utc", str],
8-
# ["distinguished", bool],
9-
# ["edited", bool],
10-
# ["id", str],
11-
# ["is_original_content", bool],
12-
# ["is_self", bool],
13-
# ["link_flair_template_id", "str"],
14-
# ["link_flair_text", Union[str, None]],
15-
# ["locked", bool],
16-
# ["name", str],
17-
# ["num_comments", int],
18-
# ["over_18", bool],
19-
# ["permalink", str],
20-
# ["saved", bool],
21-
# ["score", float],
22-
# ["selftext", str],
23-
# ["spoiler", bool],
24-
# ["stickied", bool],
25-
# ["title", str],
26-
# ["upvote_ratio", float],
27-
# ["url", str]
28-
# ]
29-
30-
313
SUBMISSION_COLUMNS = [
324
["author", str],
5+
["author_flair_text", Union[str, None]],
6+
["clicked", bool],
7+
["created_utc", str],
8+
["distinguished", bool],
9+
["edited", bool],
10+
["id", str],
11+
["is_original_content", bool],
12+
["is_self", bool],
13+
["link_flair_text", Union[str, None]],
14+
["locked", bool],
15+
["name", str],
16+
["num_comments", int],
17+
["over_18", bool],
18+
["permalink", str],
19+
["saved", bool],
3320
["score", float],
21+
["selftext", str],
22+
["spoiler", bool],
23+
["stickied", bool],
3424
["title", str],
35-
]
25+
["upvote_ratio", float],
26+
["url", str]
27+
]

0 commit comments

Comments
 (0)