@@ -109,7 +109,7 @@ class Organization(models.Model):
109
109
110
110
@property
111
111
def as2org (self ):
112
- """ Returns an object of pyas2lib's Organization class"""
112
+ """Returns an object of pyas2lib's Organization class"""
113
113
params = {"as2_name" : self .as2_name , "mdn_url" : settings .MDN_URL }
114
114
if self .signature_key :
115
115
params ["sign_key" ] = bytes (self .signature_key .key )
@@ -262,7 +262,7 @@ class Partner(models.Model):
262
262
263
263
@property
264
264
def as2partner (self ):
265
- """ Returns an object of pyas2lib's Partner class"""
265
+ """Returns an object of pyas2lib's Partner class"""
266
266
params = {
267
267
"as2_name" : self .as2_name ,
268
268
"compress" : self .compress ,
@@ -414,7 +414,7 @@ class Meta:
414
414
415
415
@property
416
416
def as2message (self ):
417
- """ Returns an object of pyas2lib's Message class"""
417
+ """Returns an object of pyas2lib's Message class"""
418
418
if self .direction == "IN" :
419
419
as2m = As2Message (
420
420
sender = self .partner .as2partner , receiver = self .organization .as2org
@@ -431,7 +431,7 @@ def as2message(self):
431
431
432
432
@property
433
433
def status_icon (self ):
434
- """ Return the icon for message status """
434
+ """Return the icon for message status"""
435
435
if self .status == "S" :
436
436
return "admin/img/icon-yes.svg"
437
437
elif self .status == "E" :
@@ -442,7 +442,7 @@ def status_icon(self):
442
442
return "admin/img/icon-unknown.svg"
443
443
444
444
def send_message (self , header , payload ):
445
- """ Send the message to the partner"""
445
+ """Send the message to the partner"""
446
446
logger .info (
447
447
f'Sending message { self .message_id } from organization "{ self .organization } " '
448
448
f'to partner "{ self .partner } ".'
@@ -595,7 +595,7 @@ def __str__(self):
595
595
return self .mdn_id
596
596
597
597
def send_async_mdn (self ):
598
- """ Send the asynchronous MDN to the partner"""
598
+ """Send the asynchronous MDN to the partner"""
599
599
600
600
# convert the mdn headers to dictionary
601
601
headers = HeaderParser ().parsestr (self .headers .read ().decode ())
0 commit comments