Skip to content

Commit

Permalink
introduce attribute irods.message.property at module EOF.
Browse files Browse the repository at this point in the history
this avoids corrupting the @Property facility used earlier in the module source file,
and prevents possibility of breaking changes.
  • Loading branch information
d-w-moore committed Oct 16, 2024
1 parent a365278 commit 704fce4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions irods/message/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
import ast
import sys
import threading
from irods.message.message import Message
from irods.message.property_types import (BinaryProperty, StringProperty,
IntegerProperty, LongProperty, ArrayProperty,
SubmessageProperty)
from .message import Message
from .property_types import (BinaryProperty, StringProperty,
IntegerProperty, LongProperty, ArrayProperty,
SubmessageProperty)

class Bad_AVU_Field(ValueError):
pass
Expand Down Expand Up @@ -1150,3 +1150,5 @@ def empty_gen_query_out(cols):
SqlResult_PI=sql_results
)
return gqo

from . import property_types as property

0 comments on commit 704fce4

Please sign in to comment.