feat: add create tenant command (#4974)

This commit is contained in:
takatost
2024-06-06 00:42:00 +08:00
committed by GitHub
parent 237b8fe3d9
commit 3579fd1b09
2 changed files with 46 additions and 2 deletions

View File

@@ -7,7 +7,6 @@ exclude = [
line-length = 120
[tool.ruff.lint]
ignore-init-module-imports = true
select = [
"B", # flake8-bugbear rules
"F", # pyflakes rules
@@ -38,6 +37,7 @@ ignore = [
"B006", # mutable-argument-default
"B007", # unused-loop-control-variable
"B026", # star-arg-unpacking-after-keyword-arg
"B901", # return-in-generator
"B904", # raise-without-from-inside-except
"B905", # zip-without-explicit-strict
]