Skip to content

Commit

Permalink
Bug fix in .py example files
Browse files Browse the repository at this point in the history
  • Loading branch information
Bachibouzouk committed Dec 14, 2023
1 parent 1757962 commit 94477c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ramp/example/input_file_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
)
uc.initialize(peak_enlarge=0.15)

Profiles_list = uc.generate_daily_load_profiles()
Profiles_list = uc.generate_daily_load_profiles(flat=False)

# post-processing
from ramp.post_process import post_process as pp
Expand Down
2 changes: 1 addition & 1 deletion ramp/example/input_file_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
)
uc.initialize(peak_enlarge=0.15)

Profiles_list = uc.generate_daily_load_profiles()
Profiles_list = uc.generate_daily_load_profiles(flat=False)

# post-processing
from ramp.post_process import post_process as pp
Expand Down
2 changes: 1 addition & 1 deletion ramp/example/input_file_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
)
uc.initialize(peak_enlarge=0.15)

Profiles_list = uc.generate_daily_load_profiles()
Profiles_list = uc.generate_daily_load_profiles(flat=False)

# post-processing
from ramp.post_process import post_process as pp
Expand Down

0 comments on commit 94477c7

Please sign in to comment.