Skip to content
Snippets Groups Projects
Commit 3a318c6d authored by Marco De Donno's avatar Marco De Donno
Browse files

Add the is_initialized() function

parent de2a4356
No related branches found
No related tags found
No related merge requests found
......@@ -1168,3 +1168,11 @@ class NIST( object ):
content is the same).
"""
return deepcopy( self )
def is_initialized( self ):
try:
self.get( "1.003" )
return True
except:
return False
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