Skip to content

Commit c6bd352

Browse files
author
thepetk
committed
Fix mypy
1 parent 7228fc0 commit c6bd352

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

gitlab2sentry/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,8 @@ def update(
387387
if g2s_project:
388388
sentry_group_name = g2s_project.group.split("/")[0].strip()
389389
self._handle_g2s_project(
390-
g2s_project, sentry_group_name, custom_name
391-
) # type: ignore
390+
g2s_project, sentry_group_name, custom_name # type: ignore
391+
)
392392
else:
393393
logging.info(
394394
"{}: Project with fullPath - {} not found".format(
@@ -406,9 +406,8 @@ def update(
406406
# Skip if sentry is installed or
407407
# Project has disabled MRs
408408
self._handle_g2s_project(
409-
g2s_project, sentry_group_name
410-
) # type: ignore
411-
409+
g2s_project, sentry_group_name # type: ignore
410+
)
412411
for key in self.run_stats.keys():
413412
logging.info(
414413
"{}: RESULTS - {}: {}".format(self.__str__(), key, self.run_stats[key])

0 commit comments

Comments
 (0)