Skip to content

Commit

Permalink
no prints in bt reading
Browse files Browse the repository at this point in the history
  • Loading branch information
ct2034 committed Jun 17, 2024
1 parent d4027a8 commit 7fd73a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions btlib/src/btlib/bts.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ def xml_to_networkx(fname: str) -> nx.Graph:
bs = BeautifulSoup(open(fname), 'xml')
g = nx.DiGraph()
xpi: XML_PER_ID = {}
print(f'{bs=}')
# print(f'{bs=}')

bt_roots = bs.find_all('BehaviorTree')
print(f'{bt_roots=}')
# print(f'{bt_roots=}')
if len(bt_roots) > 1:
logger.warning('More than one BehaviorTree found. ')
for bt_root in bt_roots:
Expand Down

0 comments on commit 7fd73a5

Please sign in to comment.