Skip to content

Commit

Permalink
removing unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoterh committed Jan 20, 2025
1 parent 17fc3f5 commit 5516d6b
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/smefit/analyze/coefficients_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ def plot_coeffs_bar(
x_log=True,
x_min=1e-2,
x_max=500,
legend_loc="best",
):
"""
Plot error bars at given confidence level
Expand Down Expand Up @@ -344,14 +343,7 @@ def plot_coeffs_bar(
plt.savefig(f"{self.report_folder}/coefficient_bar.pdf", dpi=500)
plt.savefig(f"{self.report_folder}/coefficient_bar.png")

def plot_pull(
self,
pull,
x_min=-3,
x_max=3,
figsize=(10, 15),
legend_loc="best",
):
def plot_pull(self, pull, x_min=-3, x_max=3, figsize=(10, 15)):
"""
Plot error bars at given confidence level
Expand Down

0 comments on commit 5516d6b

Please sign in to comment.