Skip to content

Commit

Permalink
Add birthday to constants
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilmanAIDENTIFIED committed Nov 3, 2023
1 parent 8e3ed6a commit 371f874
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion us/unitedstatesofamerica.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name = "United States of America"
abbr = "US"

__all__ = ["name", "abbr"]
import datetime
birthday = datetime.date(1776, 7, 4)

__all__ = ["name", "abbr", "birthday"]

0 comments on commit 371f874

Please sign in to comment.