Skip to content

Commit

Permalink
sort_dictionary under payment bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
eamtalu committed May 20, 2020
1 parent fd637ea commit f80d595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sslcommerz_python/payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ def key_check(data_dict, check_key):

@staticmethod
def sort_keys(data_dict):
return [(key, data_dict[k]) for key in sorted(data_dict.keys())]
return [(key, data_dict[key]) for key in sorted(data_dict.keys())]

0 comments on commit f80d595

Please sign in to comment.