Skip to content

Commit

Permalink
Cosmetic fix of string in lobster-cpp (#139)
Browse files Browse the repository at this point in the history
Added 'r' prefix to string to have the same coding style throughout all
related strings.
  • Loading branch information
phiwuu authored Dec 4, 2024
1 parent d465039 commit de48ba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lobster/tools/cpp/cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
SUFFIX = r"\[lobster-tracing\]$"

RE_NOTAGS = (PREFIX + " " +
"%s %s has no tracing tags" % (KIND_PATTERN,
NAME_PATTERN) +
r"%s %s has no tracing tags" % (KIND_PATTERN,
NAME_PATTERN) +
" " + SUFFIX)
RE_TAGS = (PREFIX + " " +
r"%s %s traces to +(.+) +" % (KIND_PATTERN,
Expand Down

0 comments on commit de48ba4

Please sign in to comment.