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
Typing certain parameters could be made simpler with a central types module that describes longer unioned types used widely across the codebase. In particular this includes things like
However this kind of file can become unwieldy without some discipline. It could, for example, but prudent to graduate types to a global file as we go along, first putting them in deeper modules:
# xtgeo.grid3d.types or _typesGridLike=Union[Grid, GridProperty]
The text was updated successfully, but these errors were encountered:
Typing certain parameters could be made simpler with a central types module that describes longer unioned types used widely across the codebase. In particular this includes things like
However this kind of file can become unwieldy without some discipline. It could, for example, but prudent to graduate types to a global file as we go along, first putting them in deeper modules:
The text was updated successfully, but these errors were encountered: