Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/wipplpy/brb/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
Create objects pertaining to accessing databases for the BRB device.
"""

from WiPPLPy.modules.config_reader import MDSplusConfigReader
from WiPPLPy.modules.connection import MDSPlusConnection
from wipplpy.modules.config_reader import MDSplusConfigReader
from wipplpy.modules.connection import MDSplusConnection


class BRBConnection(MDSPlusConnection):
class BRBConnection(MDSplusConnection):
"""
Open the BRB-MDSplus database for a given shot number.
"""
Expand Down Expand Up @@ -35,5 +35,5 @@ def make_connection(self, shot_number):
self._local_and_remote_connection(
shot_number,
self.config_reader.BRB_tree,
self.config_reader.BRB_remote_server,
self.config_reader.BRB_remote_server
)
3 changes: 3 additions & 0 deletions tests/brb/test_connection.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
Tests for database-connection objects associated with the BRB device.
"""
File renamed without changes.
Loading