Skip to content

Commit 38d08e5

Browse files
authored
Set pylint's line length to 79 chars (#35)
1 parent d7d9907 commit 38d08e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ indent-after-paren=4
245245
indent-string=' '
246246

247247
# Maximum number of characters on a single line.
248-
max-line-length=100
248+
max-line-length=79
249249

250250
# Maximum number of lines in a module.
251251
max-module-lines=1000

opentelemetry-api/opentelemetry/trace/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def start_span(self, name: str, parent: 'Span') -> Iterator['Span']:
104104
child.add_event("child's event")
105105
tracer.get_current_span() # returns child
106106
tracer.get_current_span() # returns parent
107-
tracer.get_current_span() # returns the previously active span
107+
tracer.get_current_span() # returns previously active span
108108
109109
This is a convenience method for creating spans attached to the
110110
tracer's context. Applications that need more control over the span

0 commit comments

Comments
 (0)