Skip to content

Commit

Permalink
address lint issues (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-wolfe21 authored Feb 24, 2021
1 parent fda6bf6 commit de53001
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
1 change: 0 additions & 1 deletion rubicon/client/dataframe.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from rubicon.client import Base, TagMixin
from rubicon.exceptions import RubiconException


class Dataframe(Base, TagMixin):
Expand Down
4 changes: 2 additions & 2 deletions rubicon/ui/views/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ def make_header_layout():
children=[
html.A(
className="header--link",
href=f"https://capitalone.github.io/rubicon",
href="https://capitalone.github.io/rubicon",
children="Docs",
),
html.A(
className="header--link",
href=f"https://github.com/capitalone/rubicon",
href="https://github.com/capitalone/rubicon",
children="Github",
),
],
Expand Down
8 changes: 1 addition & 7 deletions tests/unit/client/test_dataframe_client.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
import sys
from unittest.mock import MagicMock, call, patch

import pytest

from rubicon import domain
from rubicon.client import Dataframe
from rubicon.exceptions import RubiconException


def test_properties(project_client):
Expand All @@ -26,4 +20,4 @@ def test_get_data(project_client, test_dataframe):
df = test_dataframe
logged_df = parent.log_dataframe(df)

assert logged_df.data.compute().equals(df.compute())
assert logged_df.data.compute().equals(df.compute())

0 comments on commit de53001

Please sign in to comment.