Skip to content

Commit

Permalink
Quote the no edge labels
Browse files Browse the repository at this point in the history
  • Loading branch information
movermeyer authored Nov 10, 2024
1 parent 7810427 commit 96fa4f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions why_ciso8601.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ This document aims to describe some considerations to make when choosing a times
graph TD;
A[Do you care about the performance of timestamp parsing?]
A--yes-->Y;
A--no-->C;
A--"no"-->C;
C[Do you need to support Python 2.7?];
C--yes-->Y
C--no-->E
C--"no"-->E
E[Do you need strict RFC 3339 parsing?];
E--yes-->Y;
E--no-->H;
E--"no"-->H;
H[Do you need to support Python < 3.11?]
H--yes-->V;
H--no-->Z;
H--"no"-->Z;
V[Use backports.datetime_fromisoformat]
Y[Use ciso8601]
Expand Down

0 comments on commit 96fa4f3

Please sign in to comment.