Skip to content

Commit

Permalink
fix flak8
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Apr 3, 2018
1 parent 9fb1330 commit 65b5aea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion beem/steem.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from builtins import object
import json
import logging
import re
from beemgraphenebase.py23 import bytes_types, integer_types, string_types, text_type
from datetime import datetime, timedelta
from beemapi.steemnoderpc import SteemNodeRPC
Expand All @@ -23,7 +24,7 @@
)
from .wallet import Wallet
from .transactionbuilder import TransactionBuilder
from .utils import formatTime, resolve_authorperm, derive_permlink
from .utils import formatTime, resolve_authorperm, derive_permlink, remove_from_dict

log = logging.getLogger(__name__)

Expand Down
1 change: 0 additions & 1 deletion tests/beem/test_comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,4 +196,3 @@ def test_recent_by_path(self):
r = RecentByPath(category="hot", steem_instance=bts)
self.assertTrue(len(r) > 0)
self.assertTrue(r[0] is not None)

4 changes: 2 additions & 2 deletions tests/beem/test_steem.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,8 +410,8 @@ def test_approvewitness(self, node_param):
def test_post(self):
bts = self.bts
tx = bts.post("title", "body", author="test", permlink=None, reply_identifier=None,
json_metadata=None, comment_options=None, community=None, tags=["a, b, c, d, e"],
beneficiaries=None, self_vote=False)
json_metadata=None, comment_options=None, community=None, tags=["a, b, c, d, e"],
beneficiaries=None, self_vote=False)
self.assertEqual(
(tx["operations"][0][0]),
"comment"
Expand Down

0 comments on commit 65b5aea

Please sign in to comment.