We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f059ee commit e57ce7bCopy full SHA for e57ce7b
lib/fdiff/__init__.py
@@ -1,4 +1,3 @@
1
#!/usr/bin/env python3
2
-# -*- coding: utf-8 -*-
3
4
version = __version__ = "0.4.0.dev0"
lib/fdiff/__main__.py
@@ -1,5 +1,4 @@
import os
5
import sys
@@ -36,7 +35,7 @@ def run(argv):
36
35
description="An OpenType table diff tool for fonts."
37
)
38
parser.add_argument(
39
- "--version", action="version", version="fdiff v{}".format(__version__)
+ "--version", action="version", version=f"fdiff v{__version__}"
40
41
42
"-c",
0 commit comments