Skip to content

Commit

Permalink
black; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrauth committed Dec 3, 2023
1 parent d54089c commit 1f87b2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/when/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Calculate and convert times across time zones and cities of significant population.
"""

__version__ = (3, 0, 0)
__version__ = (3, 1, 0)
VERSION = ".".join(str(i) for i in __version__)


Expand Down
3 changes: 2 additions & 1 deletion src/when/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ def write_text(self):

def strftime_docs():
import prettytable

pt = prettytable.PrettyTable(
field_names=["Spec", "Replacement", "Example", "Note"],
max_width=72,
Expand All @@ -258,5 +259,5 @@ def strftime_docs():
)


if __name__ == '__main__':
if __name__ == "__main__":
strftime_docs()

0 comments on commit 1f87b2d

Please sign in to comment.