Skip to content

Commit

Permalink
Update docstring for EpicsAdapter method
Browse files Browse the repository at this point in the history
This is to make clear that the method is concerned with loading an
actual db file.
  • Loading branch information
joeshannon committed Jul 13, 2023
1 parent 1546063 commit 6dc6cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tickit/adapters/epicsadapter/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def on_db_load(self) -> None:
raise NotImplementedError

def load_records_without_DTYP_fields(self):
"""Loads the records without DTYP fields."""
"""Load records from database file without DTYP fields."""
with open(self.db_file, "rb") as inp:
with NamedTemporaryFile(suffix=".db", delete=False) as out:
for line in inp.readlines():
Expand Down

0 comments on commit 6dc6cd4

Please sign in to comment.