Skip to content

Commit

Permalink
Fix over-indented
Browse files Browse the repository at this point in the history
JokeWaumans committed Jul 25, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 0b4eb2a commit deecdd1
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mlx/warnings/polyspace_checker.py
Original file line number Diff line number Diff line change
@@ -125,7 +125,7 @@ def config_parser(self, config, name):
substitute_envvar(config, {'min', 'max'})
print("Config parsing for {name} completed".format(name=name))
except KeyError as err:
print("Incomplete config. Missing: {key}".format(key=err))
print("Incomplete config. Missing: {key}".format(key=err))

def parse_config(self, config):
"""Parsing configuration dict extracted by previously opened JSON or yaml/yml file
2 changes: 1 addition & 1 deletion src/mlx/warnings/robot_checker.py
Original file line number Diff line number Diff line change
@@ -100,7 +100,7 @@ def config_parser(self, config, name):
substitute_envvar(config, {'min', 'max'})
print("Config parsing for suite {name!r} completed".format(name=name))
except KeyError as err:
print("Incomplete config. Missing: {key}".format(key=err))
print("Incomplete config. Missing: {key}".format(key=err))

def parse_config(self, config):
self.checkers = []

0 comments on commit deecdd1

Please sign in to comment.