File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 9
9
"settings" : {
10
10
"quarto.render.previewType" : " external" ,
11
11
"notebook.formatOnSave.enabled" : true ,
12
+ "python.analysis.autoImportCompletions" : true ,
12
13
"python.analysis.typeCheckingMode" : " basic" ,
13
14
"dbt.queryLimit" : 200 ,
14
15
"files.associations" : {
Original file line number Diff line number Diff line change @@ -56,6 +56,9 @@ def round_file_aggregator(json_name):
56
56
df_round ["chainId" ] = str (chain_id )
57
57
df_round ["roundId" ] = str (round_id )
58
58
df = pd .concat ([df , df_round ])
59
+
60
+ df = df .convert_dtypes ()
61
+
59
62
return df
60
63
61
64
@@ -98,4 +101,6 @@ def raw_round_applications() -> pd.DataFrame:
98
101
99
102
@asset
100
103
def raw_round_contributors () -> pd .DataFrame :
101
- return round_file_aggregator ("contributors.json" )
104
+ df = round_file_aggregator ("contributors.json" )
105
+ df ["roundId" ] = '"' + df ["roundId" ] + '"'
106
+ return df
You can’t perform that action at this time.
0 commit comments