Skip to content

Commit

Permalink
Naming Convention Edits
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Daniel Bennett committed Aug 28, 2020
1 parent db8e5f9 commit f93dd99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/ECNQueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#------------------------------------------------------------------------------#

# The directory where queue items are
CurrentFilePath = __file__
CurrentFileDirectory = os.path.dirname(CurrentFilePath)
CurrentFileDirectoryParent = os.path.dirname(CurrentFileDirectory)
queueDirectory = os.path.join(CurrentFileDirectoryParent, "q-snapshot")
currentFilePath = __file__
currentFileDirectory = os.path.dirname(currentFilePath)
currentFileDirectoryParent = os.path.dirname(currentFileDirectory)
queueDirectory = os.path.join(currentFileDirectoryParent, "q-snapshot")

# Queues to not load in getQueues()
queuesToIgnore = ["archives", "drafts", "inbox"]
Expand Down

0 comments on commit f93dd99

Please sign in to comment.