Skip to content

Commit

Permalink
Merge branch 'master' into xref_ints
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie1977 authored Sep 5, 2024
2 parents a55bfdc + b713537 commit 1d06453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vfb_connect/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .cross_server_tools import VfbConnect

# Create an instance of VfbConnect and make it available directly
vfb = VfbConnect()
vfb = VfbConnect(vfb_launch=True)

__all__ = ['vfb', 'VfbConnect']
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 @@ -122,7 +122,7 @@ def __init__(self, neo_endpoint=get_default_servers()['neo_endpoint'],

print("\033[32mSession Established!\033[0m")
print("")
print("\033[33mType \033[35mvfb. \033[33mand press \033[35mtab\033[33m to see available queries. You can run help against any query e.g. \033[35mhelp(vfb.terms)\033[0m")
print("\033[33mType \033[35mvfb. \033[33mand press \033[35mtab\033[33m to see available queries. You can run help against any query e.g. \033[35mhelp(vfb.terms)\033[0m") if vfb_launch else None

def __dir__(self):
return [attr for attr in list(self.__dict__.keys()) if not attr.startswith('_')] + [attr for attr in dir(self.__class__) if not attr.startswith('_') and not attr.startswith('add_')]
Expand Down

0 comments on commit 1d06453

Please sign in to comment.