Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cluhmann committed Oct 19, 2023
1 parent a6e8251 commit ccb0b5b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pymc_marketing/mmm/delayed_saturated_mmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
import pandas as pd
import pymc as pm
import seaborn as sns
from xarray import DataArray
from pytensor.tensor.variable import TensorVariable
from xarray import DataArray


from pymc_marketing.mmm.base import MMM
from pymc_marketing.mmm.preprocessing import MaxAbsScaleChannels, MaxAbsScaleTarget
Expand Down Expand Up @@ -557,8 +558,10 @@ def channel_contributions_forward_pass(
array-like
Transformed channel data.
"""
channel_contribution_forward_pass = super().channel_contributions_forward_pass_untransformed(
channel_data=channel_data
channel_contribution_forward_pass = (
super().channel_contributions_forward_pass_untransformed(
channel_data=channel_data
)
)
target_transformed_vectorized = np.vectorize(
self.target_transformer.inverse_transform,
Expand Down

0 comments on commit ccb0b5b

Please sign in to comment.