Skip to content

Commit 98306bc

Browse files
committed
fix lint
1 parent d3ea6ee commit 98306bc

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.isort.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[settings]
2-
known_third_party = arviz,matplotlib,numpy,pandas,patsy,pymc,scipy,seaborn,setuptools,sklearn,statsmodels,xarray
2+
known_third_party = arviz,matplotlib,numpy,pandas,patsy,pymc,pytest,scipy,seaborn,setuptools,sklearn,statsmodels,xarray

causalpy/pymc_models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from typing import Any, Dict, Optional
2-
import pandas as pd
2+
33
import arviz as az
44
import numpy as np
5+
import pandas as pd
56
import pymc as pm
67
from arviz import r2_score
78

causalpy/tests/test_pymc_models.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
import arviz as az
12
import numpy as np
2-
import pytest
3+
import pandas as pd
34
import pymc as pm
5+
import pytest
6+
47
from causalpy.pymc_models import ModelBuilder
5-
import arviz as az
6-
import pandas as pd
78

89

910
class MyToyModel(ModelBuilder):

0 commit comments

Comments
 (0)