Skip to content

Commit

Permalink
change isort profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Junsu Park committed Aug 18, 2024
1 parent 226925f commit 80adbab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ where = ["volatility_arbitrage"]
line-length = 100

[tool.isort]
line_length = 100
profile = "black"

[tool.pylint.main]
load-plugins = ["pylint.extensions.docparams"]
7 changes: 5 additions & 2 deletions volatility_arbitrage/pricing_model/weighted_variance_swap.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
import numpy as np
import numpy.typing as npt

from volatility_arbitrage.pricing_model.interface import (Correlation, HestonParams,
StrategyPnlCalculator)
from volatility_arbitrage.pricing_model.interface import (
Correlation,
HestonParams,
StrategyPnlCalculator,
)

ARRAY = npt.NDArray[np.float64]

Expand Down

0 comments on commit 80adbab

Please sign in to comment.