Skip to content

Commit

Permalink
Fixin' tests and mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Barrett committed Jun 10, 2020
1 parent cc146d8 commit 41cacfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset/connectors/base/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ def name(self) -> str:
@property
def kind(self) -> str:
if self.sql:
return DatasourceKind.virtual.value
return DatasourceKind.VIRTUAL.value

return DatasourceKind.physical.value
return DatasourceKind.PHYSICAL.value

@declared_attr
def slices(self) -> RelationshipProperty:
Expand Down

0 comments on commit 41cacfa

Please sign in to comment.