Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
kip-hart committed May 29, 2021
1 parent 6372227 commit 53171ea
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import os
import sys

sys.path.insert(0, os.path.abspath('../../'))


Expand Down
3 changes: 1 addition & 2 deletions plot_incremental.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import os

import aabbtree
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle

import aabbtree


def plot_contents(tree, level=0):
if tree.is_leaf:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from __future__ import absolute_import, print_function

from os.path import dirname
from os.path import join
Expand Down
1 change: 0 additions & 1 deletion tests/test_aabb.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import pytest

from aabbtree import AABB


Expand Down
4 changes: 1 addition & 3 deletions tests/test_aabbtree.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import itertools

import pytest

from aabbtree import AABB
from aabbtree import AABBTree
from aabbtree import AABB, AABBTree


def test_init():
Expand Down

0 comments on commit 53171ea

Please sign in to comment.