Skip to content

Commit 7cb4ac8

Browse files
committed
comments update
1 parent 5dfa29d commit 7cb4ac8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/client/delphi_epidata.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,9 @@ def log(evt, **kwargs):
5252
kwargs['timestamp'] = time.strftime("%Y-%m-%d %H:%M:%S %z")
5353
return sys.stderr.write(str(kwargs) + "\n")
5454

55-
# Check that this client's version matches the most recent available. This
56-
# is run just once per program execution, on initial module load (see the
57-
# bottom of the file). This is a function of how Python's module system
58-
# works: https://docs.python.org/3/reference/import.html#the-module-cache
55+
# Check that this client's version matches the most recent available. This
56+
# is indended to run just once per program execution, on initial module load.
57+
# See the bottom of this file for the ultimate call to this method.
5958
@staticmethod
6059
def _version_check():
6160
try:
@@ -713,4 +712,7 @@ async def async_make_calls(param_combos):
713712

714713

715714

715+
# This should only run once per program execution, on initial module load,
716+
# as a result of how Python's module system works:
717+
# https://docs.python.org/3/reference/import.html#the-module-cache
716718
Epidata._version_check()

0 commit comments

Comments
 (0)