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
In #147 , I'm marking BaseConfig, EmulatorType, Endpoints as symbols explicitly exported at the pasqal_cloud-level because these objects are being called in pulser_pasqal as pasqal_cloud.X and mypy complained about this.
However, I'm sure there are other symbols that would make sense to explicitly export so it's weird to be exporting only these three.
For clarification, there are (at least) two ways to signal a symbol as "explicitly exported":
In #147 , I'm marking
BaseConfig
,EmulatorType
,Endpoints
as symbols explicitly exported at thepasqal_cloud
-level because these objects are being called inpulser_pasqal
aspasqal_cloud.X
andmypy
complained about this.However, I'm sure there are other symbols that would make sense to explicitly export so it's weird to be exporting only these three.
For clarification, there are (at least) two ways to signal a symbol as "explicitly exported":
from module import X as X
(this is what I did in [FEAT] Incorporate pulser-pasqal package in the pasqal-cloud repo #147)__all__
module attributeThe text was updated successfully, but these errors were encountered: