Skip to content

Commit

Permalink
lint fussiness
Browse files Browse the repository at this point in the history
(Just the tip of the iceberg)
  • Loading branch information
wspr committed Mar 9, 2024
1 parent 4e489a6 commit 7697272
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pysankey/sankey.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,26 @@
import numpy as np
import pandas as pd


class PySankeyException(Exception):
pass


class NullsInFrame(PySankeyException):
pass


class LabelMismatch(PySankeyException):
pass


def sankey(
data,
data,
colorDict=None,
aspect=4,
aspect=4,
labelOrder=None,
fontsize=14,
titles=None,
fontsize=14,
titles=None,
titleGap=0.05,
titleSide="top", # "bottom", "both"
frameSide="none",
Expand Down

0 comments on commit 7697272

Please sign in to comment.