Skip to content

Commit

Permalink
Delete superfluous imports and add quotation marks in getting-started…
Browse files Browse the repository at this point in the history
….md (#2679)

Co-authored-by: Phillip Carter <[email protected]>
  • Loading branch information
matthiasa4 and cartermp authored May 10, 2023
1 parent 1c65eb5 commit 30e21c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/instrumentation/python/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Create a file `app.py` and add the following code to it:

```python
from random import randint
from flask import Flask, request
from flask import Flask

app = Flask(__name__)

Expand Down Expand Up @@ -274,7 +274,7 @@ create a trace that's a child of the one that's automatically generated:
from opentelemetry import trace

from random import randint
from flask import Flask, request
from flask import Flask

# Acquire a tracer
tracer = trace.get_tracer("diceroller.tracer")
Expand Down Expand Up @@ -400,7 +400,7 @@ from opentelemetry import trace
from opentelemetry import metrics

from random import randint
from flask import Flask, request
from flask import Flask

tracer = trace.get_tracer("diceroller.tracer")
# Acquire a meter.
Expand Down

0 comments on commit 30e21c5

Please sign in to comment.