Skip to content

Commit

Permalink
fixed mypy and isort issues .for supplement_fig_5.py
Browse files Browse the repository at this point in the history
  • Loading branch information
simonleandergrimm committed Dec 1, 2023
1 parent 4346c7c commit 4b8c53a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions figures/supplement_fig_5.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import csv
from collections import defaultdict
from dataclasses import dataclass
from math import log
from collections import defaultdict
import matplotlib.pyplot as plt # type: ignore
import seaborn as sns # type: ignore

import matplotlib.pyplot as plt # type: ignore
import numpy as np
import pandas as pd
import seaborn as sns # type: ignore

PERCENTILES = [5, 25, 50, 75, 95]


def fits_df() -> pd.DataFrame:
data = defaultdict(list)
data: defaultdict[str, list] = defaultdict(list)

for p in PERCENTILES:
data[f"{p}%"] = []
Expand Down

0 comments on commit 4b8c53a

Please sign in to comment.