You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you call the function list_solder_materials(), it returns a list of solder names, such as "SAC105." However, this list does not include information about whether each solder is LEAD-FREE or TIN-LEAD (which are the types of solder).
To improve this function, please modify it so that it returns a list of tuples for example. Each tuple should contain the solder name and its corresponding type. For example, the result could look like this:
💡 Steps for implementing the feature
For example, the result could look like this:
[
("SAC105", "LEAD-FREE"),
("Sn63Pb37", "TIN-LEAD"),
. . .
]
🔗 Useful links and references
No response
The text was updated successfully, but these errors were encountered:
📝 Description of the feature
When you call the function list_solder_materials(), it returns a list of solder names, such as "SAC105." However, this list does not include information about whether each solder is LEAD-FREE or TIN-LEAD (which are the types of solder).
To improve this function, please modify it so that it returns a list of tuples for example. Each tuple should contain the solder name and its corresponding type. For example, the result could look like this:
💡 Steps for implementing the feature
For example, the result could look like this:
[
("SAC105", "LEAD-FREE"),
("Sn63Pb37", "TIN-LEAD"),
. . .
]
🔗 Useful links and references
No response
The text was updated successfully, but these errors were encountered: