Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelli74 committed Feb 16, 2024
1 parent 1864b25 commit f081149
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tools/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ def url(self):
@reify
def content(self):
"""Get file content."""
return requests.get(self.url, timeout=DEVICE_IO_TIMEOUT,
verify=False).text
return requests.get(self.url, timeout=DEVICE_IO_TIMEOUT, verify=False).text

@reify
def content_parsed(self):
Expand Down Expand Up @@ -90,8 +89,8 @@ def cit_d(self):
def device(self):
"""Create mocked device."""
device = BlockDevice(Mock(), None, ConnectionOptions("mock-ip"))
device._update_d(self.cit_d) # pylint: disable=protected-access
device._update_s(self.cit_s, CoapType.REPLY) # pylint: disable=protected-access
device._update_d(self.cit_d) # pylint: disable=protected-access
device._update_s(self.cit_s, CoapType.REPLY) # pylint: disable=protected-access
return device


Expand Down

0 comments on commit f081149

Please sign in to comment.