Skip to content

Commit

Permalink
Merge branch 'master' into sparse_mat_windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s authored Oct 19, 2023
2 parents 19332bf + d7e338d commit 27b5fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_geometric/data/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def _dummies(self) -> str:
def _to_sql_type(self, type_info: Any) -> str:
if type_info == int:
return 'INTEGER'
if type_info == int:
if type_info == float:
return 'FLOAT'
if type_info == str:
return 'TEXT'
Expand Down

0 comments on commit 27b5fbf

Please sign in to comment.