Giter VIP home page Giter VIP logo

Comments (7)

nuschk avatar nuschk commented on June 10, 2024 2

Happy to when I find the time.

from meilisearch-python.

nuschk avatar nuschk commented on June 10, 2024 1

@nuschk, Can I work on this?

Yes, by all means, please do! I won't be having time for this in the next couple of days! Thank you!

from meilisearch-python.

sanders41 avatar sanders41 commented on June 10, 2024

I don't have any objections to making this change if you want to do a PR for it.

from meilisearch-python.

sanders41 avatar sanders41 commented on June 10, 2024

One note on this: List[Mapping[str, Any]] will cause type errors because List is invariant. So when a function returns List[Dict[str, Any]] and that passes to a parameter that takes List[Mapping[str, Any]] this will cause mypy to throw a type error. This can be fixed by using Sequence[Mapping[str, Any]].

from meilisearch-python.

nuschk avatar nuschk commented on June 10, 2024

Thank you. Yes.

The plan would actually be to type return values as precisely as we can (i.e. list[dict[str, Any||, while typing arguments as loose as possible.

Something like this:

def f(i: Sequence[Mapping[str, Any]]) -> list[dict[str, Any]]:
    ...

I will have to see how far that works, but this pattern usually seems to be working out fine through my own code.

from meilisearch-python.

sanders41 avatar sanders41 commented on June 10, 2024

The plan would actually be to type return values as precisely as we can (i.e. list[dict[str, Any||, while typing arguments as loose as possible.

Yes, I expect there will be no issues if we do it as you described.

from meilisearch-python.

geeksambhu avatar geeksambhu commented on June 10, 2024

@nuschk, Can I work on this?

from meilisearch-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.