Skip to content

Commit

Permalink
Remove linting of autogenerated dummy data (equinor#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Nov 11, 2019
1 parent 8b66384 commit 6c49bc4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/demo/example-data
2 changes: 1 addition & 1 deletion examples/example_subsurface_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import dash_html_components as html
import webviz_subsurface_components

with open('../src/demo/data.json') as json_file:
with open('../src/demo/example-data/subsurface-map.json') as json_file:
data = json.load(json_file)

app = dash.Dash(__name__)
Expand Down
2 changes: 1 addition & 1 deletion src/demo/SubsurfaceMapDemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, { Component } from "react";

import Map from "../lib/components/Map";

const data = require("./data.json");
const data = require("./example-data/subsurface-map.json");

class SubsurfaceMapDemo extends Component {
render() {
Expand Down
File renamed without changes.

0 comments on commit 6c49bc4

Please sign in to comment.