Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie1977 committed Sep 4, 2024
1 parent 59db958 commit 6521e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vfb_connect/cross_server_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ def get_dbs(self, include_symbols=True, data_sources_only=True):
symbol_query += "WHERE i:Site OR i:API "
symbol_query += "AND exists(i.symbol) AND i.symbol[0] <> '' RETURN i.symbol[0] as symbol"

symbol_results = self._query(symbol_query)
symbol_results = self.cypher_query(symbol_query)
dbs.extend([d['symbol'] for d in symbol_results if d['symbol']])

# Cache the results for this combination of parameters
Expand Down

0 comments on commit 6521e7c

Please sign in to comment.