Skip to content

Commit c011163

Browse files
authored
Fix README Badge (#101)
1 parent 7dfcc0c commit c011163

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3102/)
22
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
4-
[![Build](https://github.com/duneanalytics/dune-client/actions/workflows/pull-request.yaml/badge.svg)](https://github.com/duneanalytics/dune-client/actions/workflows/pull-request.yml)
4+
[![Build](https://github.com/duneanalytics/dune-client/actions/workflows/pull-request.yaml/badge.svg)](https://github.com/duneanalytics/dune-client/actions/workflows/pull-request.yaml)
55

66
# Dune Client
77

dune_client/viz/graphs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
from typing import Dict, Union
66

77
# https://github.com/plotly/colorlover/issues/35
8-
import colorlover as cl # type: ignore[import]
8+
import colorlover as cl # type: ignore[import-untyped]
99
import pandas as pd
10-
import plotly.graph_objects as go # type: ignore[import]
11-
from plotly.graph_objs import Figure # type: ignore[import]
10+
import plotly.graph_objects as go # type: ignore[import-untyped]
11+
from plotly.graph_objs import Figure # type: ignore[import-untyped]
1212

1313

1414
# function to create Sankey diagram

0 commit comments

Comments
 (0)