To use mypy in strict mode you need to make sure that 3rd party libraries are marked as typed. to do this it's just a matter to add an empty py.typed file in the root package
Is your feature request related to a problem? Please describe.
I want to be able to run mypy and not having
error: Skipping analyzing "fasthtml.common": module is installed, but missing library stubs or py.typed marker [import-untyped]
Describe the solution you'd like
just add a py.typed file in the package
To use mypy in strict mode you need to make sure that 3rd party libraries are marked as typed. to do this it's just a matter to add an empty
py.typedfile in the root packageIs your feature request related to a problem? Please describe.
I want to be able to run
mypyand not havingerror: Skipping analyzing "fasthtml.common": module is installed, but missing library stubs or py.typed marker [import-untyped]Describe the solution you'd like
just add a
py.typedfile in the package