Skip to content

Commit

Permalink
style: too long line in conanfile.py issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mpusz committed Jan 23, 2024
1 parent 8e52792 commit c65d83c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ def loose_lt_semver(v1, v2):
min_version = self._std_format_minimum_compilers_version.get(str(compiler))
if min_version and loose_lt_semver(str(compiler.version), min_version):
raise ConanInvalidConfiguration(
f"`std::format` requires at least {compiler} {min_version} ({compiler.version} in use). Use `-o use_fmtlib=True` instead."
f"`std::format` requires at least {compiler} {min_version} ({compiler.version} in use). "
"Use `-o use_fmtlib=True` instead."
)

def layout(self):
Expand Down

0 comments on commit c65d83c

Please sign in to comment.