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
imagelab.info is an Imagelab class attribute designed to be a nested dictionary containing information relevant to the computation of issue types.
Right now the type assigned to imagelab.info is Dict[str, Any] which is very loose.
The task is to define a type alias for the variable that is tight in its definition and replaces the Any with the actual types that could be present in the dictionary.
Check this link for more details on how to create type aliases.
Refer to the documentation for more details on imagelab.info.
The text was updated successfully, but these errors were encountered:
Hi @Kadam-Tushar ! The idea for creating a type for imagelab.info is that we pin down every type of object that can be present in the Dict, removing the use of Any.
imagelab.info
is anImagelab
class attribute designed to be a nested dictionary containing information relevant to the computation of issue types.Right now the type assigned to imagelab.info is
Dict[str, Any]
which is very loose.The task is to define a type alias for the variable that is tight in its definition and replaces the
Any
with the actual types that could be present in the dictionary.Check this link for more details on how to create type aliases.
Refer to the documentation for more details on
imagelab.info
.The text was updated successfully, but these errors were encountered: