Skip to content

Commit

Permalink
PEP8 clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
yokochi47 committed Apr 5, 2024
1 parent c2dc8e7 commit 4119180
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions wwpdb/utils/tests-nmr/test_daother_8817_ann_next.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import unittest
import os
import json
from shutil import copyfile

try:
from wwpdb.utils.nmr.NmrDpUtility import NmrDpUtility
Expand Down Expand Up @@ -95,7 +94,7 @@ def __test_nmr_str2str_deposit(self, entry_id):
with open(entry_dir + entry_id + '-str2str-deposit-log.json', 'r') as file:
report = json.loads(file.read())

if not report['error'] is None:
if report['error'] is not None:
self.assertNotIn('internal_error', report['error'])

self.assertIsNone(report['error'])
Expand Down

0 comments on commit 4119180

Please sign in to comment.