Skip to content

Commit

Permalink
chore: fix SIM910 messages from linter (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvaylet authored Oct 1, 2024
1 parent ee78d34 commit ecaec08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/fixtures/dummy_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

class DummyBackend:
def __init__(self, client=None, **config):
self.good_events = config.get("good_events", None)
self.bad_events = config.get("bad_events", None)
self.sli_value = config.get("sli", None)
self.good_events = config.get("good_events")
self.bad_events = config.get("bad_events")
self.sli_value = config.get("sli")

def good_bad_ratio(self, timestamp, window, slo_config):
return (self.good_events, self.bad_events)
Expand Down

0 comments on commit ecaec08

Please sign in to comment.