Skip to content

Commit

Permalink
Remove __future__ annotations from example imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Jun 16, 2023
1 parent 2d3b921 commit 7d72daa
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions docs/code-examples/point2d_random.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""Log some random points with color and radii."""
from __future__ import annotations

import rerun as rr
from numpy.random import default_rng

Expand Down
2 changes: 0 additions & 2 deletions docs/code-examples/point2d_simple.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""Log some very simple points."""
from __future__ import annotations

import rerun as rr

rr.init("points", spawn=True)
Expand Down
2 changes: 0 additions & 2 deletions docs/code-examples/point3d_random.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""Log some random points with color and radii."""
from __future__ import annotations

import rerun as rr
from numpy.random import default_rng

Expand Down
2 changes: 0 additions & 2 deletions docs/code-examples/point3d_simple.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""Log some very simple points."""
from __future__ import annotations

import rerun as rr

rr.init("points", spawn=True)
Expand Down

0 comments on commit 7d72daa

Please sign in to comment.