Spaceface16518 / Periodic

MIT License
0 stars 0 forks source link

Database has extraneous whitespace #5

Open Spaceface16518 opened 6 years ago

Spaceface16518 commented 6 years ago

When importing the database, the csv format left spaces in the columns, so the database cannot be queried properly.

 Name, Atomic_Number, Symbol
 Name,Atomic_Number,Symbol

The import was formatted like the first line instead of the second, so the database interprets the columns like " Entry" instead of "Entry". This is a problem, both because the return value of queries will be different, and because queries will not be preformed correctly due to inconstancy in the names of the columns.

Spaceface16518 commented 6 years ago

I added the wontfix label because I can't figure out a way to fix all of them at once.