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 749a3b4 commit 749598fCopy full SHA for 749598f
pyproject.toml
@@ -24,6 +24,17 @@ samldiff = "pyff.tools:difftool"
24
# Allow lines to be as long as 120.
25
line-length = 120
26
target-version = "py39"
27
+
28
+[tool.ruff.lint]
29
+# future fixes....
30
+#select = [
31
+# "B", # flake8-bugbear
32
+# "E", # pycodestyle error
33
+# "F", # pyflakes
34
+# "I", # isort
35
+# "UP", # pyupgrade
36
+# "W", # pycodestyle warning
37
+#]
38
[tool.ruff.format]
39
quote-style = "preserve"
40
src/pyff/__init__.py
@@ -2,6 +2,6 @@
2
pyFF is a SAML metadata aggregator.
3
"""
4
5
-import importlib
+import importlib.metadata
6
7
__version__ = importlib.metadata.version('pyFF')
0 commit comments