Skip to content

Commit b7a7bdb

Browse files
author
abhishekram
committed
Freeze black version and fix black formatting issues
1 parent 4808921 commit b7a7bdb

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test:
2-
@(py.test --cov-report term --cov-config .coveragerc --cov=pyas2 --color=yes pyas2/tests/ -k 'not concurrency')
2+
@(py.test --cov-report term --cov-config .coveragerc --cov=pyas2 --color=yes pyas2/tests/ --black --pylama pyas2)
33

44
serve:
55
@(ENV=example python manage.py migrate && python manage.py runserver)

pyas2/models.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class Organization(models.Model):
109109

110110
@property
111111
def as2org(self):
112-
""" Returns an object of pyas2lib's Organization class"""
112+
"""Returns an object of pyas2lib's Organization class"""
113113
params = {"as2_name": self.as2_name, "mdn_url": settings.MDN_URL}
114114
if self.signature_key:
115115
params["sign_key"] = bytes(self.signature_key.key)
@@ -262,7 +262,7 @@ class Partner(models.Model):
262262

263263
@property
264264
def as2partner(self):
265-
""" Returns an object of pyas2lib's Partner class"""
265+
"""Returns an object of pyas2lib's Partner class"""
266266
params = {
267267
"as2_name": self.as2_name,
268268
"compress": self.compress,
@@ -414,7 +414,7 @@ class Meta:
414414

415415
@property
416416
def as2message(self):
417-
""" Returns an object of pyas2lib's Message class"""
417+
"""Returns an object of pyas2lib's Message class"""
418418
if self.direction == "IN":
419419
as2m = As2Message(
420420
sender=self.partner.as2partner, receiver=self.organization.as2org
@@ -431,7 +431,7 @@ def as2message(self):
431431

432432
@property
433433
def status_icon(self):
434-
""" Return the icon for message status """
434+
"""Return the icon for message status"""
435435
if self.status == "S":
436436
return "admin/img/icon-yes.svg"
437437
elif self.status == "E":
@@ -442,7 +442,7 @@ def status_icon(self):
442442
return "admin/img/icon-unknown.svg"
443443

444444
def send_message(self, header, payload):
445-
""" Send the message to the partner"""
445+
"""Send the message to the partner"""
446446
logger.info(
447447
f'Sending message {self.message_id} from organization "{self.organization}" '
448448
f'to partner "{self.partner}".'
@@ -595,7 +595,7 @@ def __str__(self):
595595
return self.mdn_id
596596

597597
def send_async_mdn(self):
598-
""" Send the asynchronous MDN to the partner"""
598+
"""Send the asynchronous MDN to the partner"""
599599

600600
# convert the mdn headers to dictionary
601601
headers = HeaderParser().parsestr(self.headers.read().decode())

pyas2/templatetags/pyas2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
@register.filter
77
def readfilefield(field):
8-
""" Template filter for rendering data from a file field """
8+
"""Template filter for rendering data from a file field"""
99
with field.open("r") as f:
1010
return f.read()

pyas2/tests/test_advanced.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def tearDownClass(cls):
9090
mdn.payload.delete()
9191

9292
def test_post_send_command(self):
93-
""" Test that the command after successful send gets executed."""
93+
"""Test that the command after successful send gets executed."""
9494

9595
partner = Partner.objects.create(
9696
name="AS2 Server",
@@ -153,7 +153,7 @@ def test_post_send_command_async(self, mock_request):
153153
os.remove(touch_file)
154154

155155
def test_post_receive_command(self):
156-
""" Test that the command after successful receive gets executed."""
156+
"""Test that the command after successful receive gets executed."""
157157
# settings.DATA_DIR = TEST_DIR
158158
# add the post receive command and save it
159159
self.partner.cmd_receive = "touch %s/$filename.received" % TEST_DIR
@@ -185,7 +185,7 @@ def test_post_receive_command(self):
185185
# settings.DATA_DIR = None
186186

187187
def test_use_received_filename(self):
188-
""" Test using the filename of the payload received while saving the file."""
188+
"""Test using the filename of the payload received while saving the file."""
189189

190190
# add the post receive command and save it
191191
self.partner.cmd_receive = "touch %s/$filename.received" % TEST_DIR

pyas2/tests/test_basic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def tearDown(self):
8888
mdn.payload.delete()
8989

9090
def testEndpoint(self):
91-
""" Test if the as2 reveive endpoint is active """
91+
"""Test if the as2 reveive endpoint is active"""
9292

9393
response = self.client.get("/pyas2/as2receive")
9494
self.assertEqual(response.status_code, 200)

pyas2/tests/test_commands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
@pytest.mark.django_db
1818
def test_sendbulk_command(mocker, partner, organization):
19-
""" Test the command for sending all files in the outbox folder """
19+
"""Test the command for sending all files in the outbox folder"""
2020
mocked_call_command = mocker.patch(
2121
"pyas2.management.commands.sendas2bulk.call_command"
2222
)
@@ -51,7 +51,7 @@ def test_sendbulk_command(mocker, partner, organization):
5151

5252
@pytest.mark.django_db
5353
def test_sendmessage_command(mocker, organization, partner):
54-
""" Test the command for sending an as2 message """
54+
"""Test the command for sending an as2 message"""
5555
test_message = os.path.join(TEST_DIR, "testmessage.edi")
5656

5757
# Try to run with invalid org and client

pyas2/views.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,21 @@ def find_message(message_id, partner_id):
4848

4949
@staticmethod
5050
def check_message_exists(message_id, partner_id):
51-
""" Check if the message already exists in the system """
51+
"""Check if the message already exists in the system"""
5252
return Message.objects.filter(
5353
message_id=message_id, partner_id=partner_id.strip()
5454
).exists()
5555

5656
@staticmethod
5757
def find_organization(org_id):
58-
""" Find the org using the As2 Id and return its pyas2 version"""
58+
"""Find the org using the As2 Id and return its pyas2 version"""
5959
org = Organization.objects.filter(as2_name=org_id).first()
6060
if org:
6161
return org.as2org
6262

6363
@staticmethod
6464
def find_partner(partner_id):
65-
""" Find the partner using the As2 Id and return its pyas2 version"""
65+
"""Find the partner using the As2 Id and return its pyas2 version"""
6666
partner = Partner.objects.filter(as2_name=partner_id).first()
6767
if partner:
6868
return partner.as2partner
@@ -172,7 +172,6 @@ def post(self, request, *args, **kwargs):
172172
return HttpResponse(_("AS2 message has been received"))
173173

174174
def get(self, request, *args, **kwargs):
175-
""""""
176175
return HttpResponse(
177176
_("To submit an AS2 message, you must POST the message to this URL")
178177
)
@@ -246,7 +245,7 @@ def form_valid(self, form):
246245

247246

248247
class DownloadFile(View):
249-
""" A generic view for downloading files such as payload, certificates..."""
248+
"""A generic view for downloading files such as payload, certificates..."""
250249

251250
def get(self, request, obj_type, obj_id, *args, **kwargs):
252251
filename = ""

requirements/base.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pyas2lib==1.3.3
2-
requests
2+
requests==2.25.1
33
django>=2.2.18

requirements/test.txt

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ pytest-mock==3.5.1
55
pylama==7.7.1
66
pylint==2.7.3
77
pytest-black==0.3.12
8+
black==21.5b0
89
django-environ==0.4.5

0 commit comments

Comments
 (0)