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
I am not sure what is the purpose of this condition (maybe remainder from older code, or maybe should be fmt.import_set), but as it is now, since there is no local variable of that name, it actually refers to the module-level function import_set.
This means that the condition checked here will never occur (unless the module's namespace is overwritten in runtime), and it is redundant.
The text was updated successfully, but these errors were encountered:
The current code of Dataset.load() has:
I am not sure what is the purpose of this condition (maybe remainder from older code, or maybe should be
fmt.import_set
), but as it is now, since there is no local variable of that name, it actually refers to the module-level functionimport_set
.This means that the condition checked here will never occur (unless the module's namespace is overwritten in runtime), and it is redundant.
The text was updated successfully, but these errors were encountered: