Skip to content

Commit

Permalink
removed unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
yairsimantov20 committed Jul 14, 2023
1 parent 3a182ec commit 50b96ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _get_entities_from_git(
)
for entity_data in raw_entities
]
except Exception as e:
except Exception:
return []

def _get_entities_by_commit(
Expand Down
9 changes: 9 additions & 0 deletions integrations/gitlab/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ pylint = "^2.17.4"
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

[tool.mypy]
exclude = [
'venv',
'.venv',
]
plugins = [
"pydantic.mypy"
]

[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311']
Expand Down

0 comments on commit 50b96ed

Please sign in to comment.