Skip to content

Commit

Permalink
Fixing the damn build
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Apr 13, 2017
1 parent ae672d4 commit 56a5dbf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ const propTypes = {
};

const defaultProps = {
codeCallback: () => {},
};

export default class CodeModal extends React.PureComponent {
constructor(props) {
super(props);
this.state = { code: props.code };
}
beforeOpen() {
let code = this.props.code;
if (this.props.codeCallback) {
Expand Down
1 change: 1 addition & 0 deletions superset/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
"less-loader": "^4.0.3",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.1",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"transform-loader": "^0.2.3",
Expand Down
1 change: 1 addition & 0 deletions superset/connectors/druid/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=invalid-unary-operand-type
from collections import OrderedDict
import json
import logging
Expand Down

0 comments on commit 56a5dbf

Please sign in to comment.