MCPcopy Index your code
hub / github.com/marimo-team/marimo / main

Function main

scripts/check_docstring_backticks.py:62–75  ·  view source on GitHub ↗
(argv: list[str])

Source from the content-addressed store, hash-verified

60
61
62def main(argv: list[str]) -> int:
63 errors: list[str] = []
64 for path in argv:
65 errors.extend(check_file(path))
66
67 if errors:
68 print("\n".join(errors), file=sys.stderr)
69 print(
70 "\nUse single backticks for inline code in docstrings "
71 "(`value`, not ``value``).",
72 file=sys.stderr,
73 )
74 return 1
75 return 0
76
77
78if __name__ == "__main__":

Callers 1

Calls 2

check_fileFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…