Cannot access s error (#50)

* Fix order of statements error
* Bump version
* Update templates
* Add missing script files
* Added missing DE support init
* Fixed bugs preventing definition extraction from working (#49).
This commit is contained in:
cybermaggedon 2024-09-03 22:10:48 +01:00 committed by GitHub
parent 208c219962
commit af5508ff68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 270 additions and 255 deletions

View file

@ -87,17 +87,17 @@ class Processor(ConsumerProducer):
for defn in defs:
s = defn.name
o = defn.definition
if s == "": continue
if o == "": continue
if s is None: continue
if o is None: continue
s = defn.name
s_uri = self.to_uri(s)
o = defn.definition
s_value = Value(value=str(s_uri), is_uri=True)
o_value = Value(value=str(o), is_uri=False)

View file

@ -0,0 +1,3 @@
from . service import *