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 4112acf commit ce26fc7Copy full SHA for ce26fc7
ggdp/assets.py
@@ -90,7 +90,9 @@ def raw_prices() -> pd.DataFrame:
90
91
@asset
92
def raw_rounds() -> pd.DataFrame:
93
- return chain_file_aggregator("rounds.json")
+ rounds = chain_file_aggregator("rounds.json")
94
+ rounds['metadata'] = rounds['metadata'].apply(json.dumps)
95
+ return rounds
96
97
98
@@ -100,7 +102,9 @@ def raw_round_votes() -> pd.DataFrame:
100
102
101
103
104
def raw_round_applications() -> pd.DataFrame:
- return round_file_aggregator("applications.json")
105
+ applications = round_file_aggregator("applications.json")
106
+ applications['metadata'] = applications['metadata'].apply(json.dumps)
107
+ return applications
108
109
110
0 commit comments