Skip to content

Commit

Permalink
revert "fixing" conformity when actual issue was wetware related (exc…
Browse files Browse the repository at this point in the history
…lude pylint issue W0108)
  • Loading branch information
gretel committed Mar 14, 2024
1 parent aa25a57 commit 4abd5aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
health = HealthCheck()

# Add a flask route to expose information
app.add_url_rule('/healthcheck', 'healthcheck', view_func=health.run())
app.add_url_rule('/healthcheck', 'healthcheck', view_func=lambda: health.run()) # pylint: disable=W0108


# "index"
Expand Down

0 comments on commit 4abd5aa

Please sign in to comment.