CiwPython / Ciw

Ciw is a simulation library for open queueing networks.
http://ciw.readthedocs.io
MIT License
146 stars 42 forks source link

Style of __repr__ in Individual #230

Closed galenseilis closed 1 month ago

galenseilis commented 6 months ago

Personally, I find it more readable when the __repr__ for classes like this have brackets around the information being displayed as object attributes and tells us what type of information that it is.

I.e.

The output

Individual 1

is simpler than

Individual(id_number=1)

but explicitly shows us what attribute is being communicated.

galenseilis commented 6 months ago

TODO: Update tests of __repr__.