Skip to content

Commit

Permalink
cleaning up imports as mentioned https://github.com/ros/rosdistro/pul…
Browse files Browse the repository at this point in the history
  • Loading branch information
tfoote committed Jan 5, 2015
1 parent 247eec0 commit 2fa3cc1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/test_url_validity.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,25 @@
from __future__ import print_function


from io import StringIO
try:
from cStringIO import StringIO
except ImportError:
from io import StringIO
import os
import subprocess
import yaml
from yaml.composer import Composer
from yaml.constructor import Constructor
import pprint
import sys
import unittest

import rosdistro
import unidiff
from urlparse import urlparse

# for commented debugging code below
# import pprint

DIFF_TARGET = 'origin/master'
EOL_DISTROS = ['groovy']

Expand Down

0 comments on commit 2fa3cc1

Please sign in to comment.