File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 77
88# Create a custom logging formatter
99formatter = logging .Formatter (
10- '%(asctime)s - %(name)s - %(levelname)s - %(message)s - %(attempt)s - %(status_code)s - %(url)s'
10+ '%(asctime)s - %(name)s - %(levelname)s - %(message)s - '
11+ '%(attempt)s - %(status_code)s - %(url)s'
1112)
1213handler = logging .StreamHandler ()
1314handler .setFormatter (formatter )
Original file line number Diff line number Diff line change 1+ # Line lenght different from the rest of the code to make sure that the example codes visualised on the generated
2+ # documentation webpages are shown without vertical slider to make them more readable.
3+
4+ [tool .ruff ]
5+ # Inherit all from project top configuration file.
6+ extend = " ../pyproject.toml"
7+
8+ # Override just line length
9+ line-length = 90 # Maximum possible fit to the doc webpage. Longer lines need slider.
You can’t perform that action at this time.
0 commit comments