Skip to content

Commit

Permalink
minor fix for lines properties
Browse files Browse the repository at this point in the history
  • Loading branch information
AadilLatif committed Apr 26, 2024
1 parent cebb5ce commit 8377ba8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "NREL-pydss"
version = "3.1.4"
version = "3.1.5"
description = "A high-level python interface for OpenDSS"
readme = "README.md"
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/pydss/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.1.4"
__version__ = "3.1.5"

from pydss.utils.timing_utils import timer_stats_collector
from . import *
2 changes: 1 addition & 1 deletion src/pydss/defaults/ExportLists/Exports.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ publish = true
store_values_type = "all"

[[Lines]]
property = "VoltageMagAng"
property = "CurrentsMagAng"
sample_interval = 1
publish = true
store_values_type = "all"
2 changes: 1 addition & 1 deletion src/pydss/pydss_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ def __init__(self, name, controller_types=None, controllers=None,
else:
assert isinstance(exports, dict)
self.exports = exports

print(self.exports)
if post_process_infos is not None:
for pp_info in post_process_infos:
if isinstance(pp_info, dict):
Expand Down

0 comments on commit 8377ba8

Please sign in to comment.