sigmavirus24 / github3.py

Hi, I'm a library for interacting with GItHub's REST API in a convenient and ergonomic way. I work on Python 3.6+.
https://github3.readthedocs.io
BSD 3-Clause "New" or "Revised" License
1.21k stars 402 forks source link

ProjectCard.updated_at isn't a datetime object #1093

Open robkorv opened 2 years ago

robkorv commented 2 years ago

At https://github.com/sigmavirus24/github3.py/blob/5fe88ae5decbcbd21f53bb0b97eb79eed83afc84/src/github3/projects.py#L428-L429 the project_card["updated_at"] is not converted to datetime like in the other object. See ProjectColumn.updated_at for example: https://github.com/sigmavirus24/github3.py/blob/5fe88ae5decbcbd21f53bb0b97eb79eed83afc84/src/github3/projects.py#L207.

robkorv commented 2 years ago

Let me know if you want a pr for this.