forked from phoenix-oss/llama-stack-mirror
fix: enforce stricter ASCII rules lint rules in Ruff (#2062)
# What does this PR do? - Added new Ruff lint rules to detect ambiguous or non-ASCII characters: - Added per-file ignores where Unicode usage is still required. - Fixed whatever had to be fixed Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
eab550f7d2
commit
2c7aba4158
3 changed files with 29 additions and 12 deletions
|
@ -119,7 +119,7 @@ class StackRun(Subcommand):
|
|||
|
||||
if not config_file.is_file():
|
||||
self.parser.error(
|
||||
f"Config file must be a valid file path, '{config_file}’ is not a file: type={type(config_file)}"
|
||||
f"Config file must be a valid file path, '{config_file}' is not a file: type={type(config_file)}"
|
||||
)
|
||||
|
||||
logger.info(f"Using run configuration: {config_file}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue