Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterPSmith committed Jul 10, 2024
1 parent 68a0830 commit ec04ddf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions armi/bookkeeping/db/databaseInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ def interactEveryNode(self, cycle, node):
self.writeDBEveryNode(cycle, node)

def writeDBEveryNode(self, cycle, node):
"""write the database at the end of the time node"""
"""Write the database at the end of the time node."""
self._db.writeToDB(self.r)
if self.cs[CONF_SYNC_AFTER_WRITE]:
self._db.syncToSharedFolder()

def interactEOC(self, cycle=None):
"""In case anything changed since last cycle (e.g. rxSwing), update DB. (End of Cycle)"""
"""In case anything changed since last cycle (e.g. rxSwing), update DB. (End of Cycle)."""
self._db.writeToDB(self.r, "EOC")

def interactEOL(self):
Expand Down

0 comments on commit ec04ddf

Please sign in to comment.