Skip to content

Commit

Permalink
Code style bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed Apr 23, 2018
1 parent 834dcfc commit b34f0c2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ibis/mapd/api.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ibis.config import options
from ibis.mapd.compiler import dialect, compiles, rewrites
from ibis.mapd.compiler import dialect, compiles, rewrites # noqa: F401
from ibis.mapd.client import MapDClient, EXECUTION_TYPE_CURSOR

import ibis.common as com
Expand Down
3 changes: 1 addition & 2 deletions ibis/mapd/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import pymapd

import ibis.common as com
import ibis.expr.types as ir
import ibis.expr.datatypes as dt
import ibis.expr.schema as sch

Expand Down Expand Up @@ -155,7 +154,7 @@ def __init__(
host : str
port : int
database : str
protocol : {binary’, ‘http’, ‘https}
protocol : {'binary', 'http', 'https'}
execution_type : {
EXECUTION_TYPE_ICP, EXECUTION_TYPE_ICP_GPU, EXECUTION_TYPE_CURSOR
}
Expand Down
1 change: 0 additions & 1 deletion ibis/mapd/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,3 @@ def test_compile_toplevel():
result = ibis.mapd.compile(expr)
expected = 'SELECT sum("foo") AS sum\nFROM t0' # noqa
assert str(result) == expected

0 comments on commit b34f0c2

Please sign in to comment.