Skip to content
Snippets Groups Projects
Commit e19c5740 authored by Walter Lampl's avatar Walter Lampl
Browse files

add docstring

parent 3bf642e9
No related branches found
No related tags found
No related merge requests found
......@@ -238,6 +238,11 @@ class AthConfigFlags(object):
def fillFromArgs(self,listOfArgs=None):
"""
Expects a list of strings of key=value pairs representing configuration flags.
Used to set flags from command-line parameters, like ConfigFlags.fillFromArgs(sys.argv[1:])
"""
if listOfArgs is None:
import sys
listOfArgs=sys.argv[1:]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment