We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b9ad4c commit ef940c6Copy full SHA for ef940c6
1 file changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "objinspect"
3
-version = "0.3.2"
+version = "0.3.3"
4
description = "A high-level library for Python object inspection"
5
authors = [{ name = "Žiga Ivanšek", email = "ziga.ivansek@gmail.com" }]
6
license = { file = "LICENSE" }
@@ -106,6 +106,7 @@ select = [
106
"E", # Pycodestyle (Error)
107
'I', # isort
108
'D', # pydocstyle
109
+ 'D213', # pydocstyle
110
'UP', # pyupgrade
111
'YTT', # flake8-2020
112
'B', # flake8-bugbear
@@ -168,7 +169,6 @@ ignore = [
168
169
"N803",
170
"N806",
171
"UP007",
- "UP038",
172
]
173
exclude = ["build", "tests/**"]
174
0 commit comments