File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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
716718Epidata ._version_check ()
You can’t perform that action at this time.
0 commit comments