blob: 675726de78ec15cf1f6f457082cc5776adbf98e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
try:
from yql_http_file_server import yql_http_file_server
except ImportError:
yql_http_file_server = None
try:
from solomon_runner import solomon
except ImportError:
solomon = None
# bunch of useless statements for linter happiness
# (otherwise it complains about unused names)
assert yql_http_file_server is yql_http_file_server
assert solomon is solomon
|