Skip to content

Commit

Permalink
FIX: minor errors in opendss2xml(typo) and xml2ravens(missing import)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjospina committed Jan 23, 2025
1 parent 0eba450 commit d6dd064
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ravens/xml/opendss2xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def _build_vector_group(self):
self.vector_group = self.vector_group[0].upper() + self.vector_group[1::]


class TranformerInfo:
class TransformerInfo:
def __init__(self):
self.max_wdg = 0
self.wdg_list = None
Expand Down
2 changes: 2 additions & 0 deletions ravens/xml/xml2ravens.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

import networkx as nx

import json

from ast import literal_eval
from collections import namedtuple
from copy import deepcopy
Expand Down

0 comments on commit d6dd064

Please sign in to comment.