Code Monkey home page Code Monkey logo

Comments (2)

rggjan avatar rggjan commented on September 18, 2024 1

Just stumbled on the same issue. And yes it seems foo: Optional[Tuple[str, str]] is broken, while foo:Tuple[str, str] works fine. Same thing for Lists like foo: Optional[List[str]].

Shouldn't it be something like:

  • foo: Optional[Tuple[str, str]] => nargs=2, required=False
  • foo: Tuple[str, str] => nargs=2, required=True
  • foo: Optional[List[str]] => nargs=*, required=False, const=[]
  • foo:List[str] => nargs=2, required=True

This would even allow specifying (and differentiating) between [] and None for optional lists, like:

  • [argument not given on command line] => None
  • --foo => []
  • --foo abc => ["abc"]
  • --foo abc def => ["abc", "def"]

from simpleparsing.

lebrice avatar lebrice commented on September 18, 2024

Thanks for posting @PleasantD!
Indeed, this seems related to #42, it appears like the parsing of Tuple fields is bugged.

Additionally there should be parse error if the number of items for a fixed-length tuple does not match the definition.
IE, specifying too few or too many values should generate an error if the tuple is of a fixed length.

The problem here seems to me more related to the Optional annotation, as it's not easy to determine the right value to pass to the nargs argument of add_argument in this case.. Would you have an opinion on which value of 'nargs' would be appropriate in this case?

I'm fairly certain that the parsing of fixed length tuples (a.k.a fields annotated with Tuple[int, str, float] etc.) works correctly, at least based on the following tests: https://github.com/lebrice/SimpleParsing/blob/master/test/test_tuples.py

Would you mind taking a quick glance at these tests, and letting me know what you think?

Thanks again for posting!

from simpleparsing.

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.