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
def unique(x):
#
# Drop duplicated entry.
# Convert list to set and then convert back to list.
#
# Add sorted to prevent non-deterministic results in different env.
#
return list(sorted(list(set(x))))
The text was updated successfully, but these errors were encountered:
gcc/gcc/config/riscv/multilib-generator
Line 104 in e6cb552
x type is map
object of type 'map' has no len()
please change to
The text was updated successfully, but these errors were encountered: