瀏覽代碼

PEP compliance

master
Pete Shadbolt 7 年之前
父節點
當前提交
6250fbc0d0
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      abp/graphstate.py

+ 3
- 2
abp/graphstate.py 查看文件

@@ -62,7 +62,7 @@ class GraphState(object):

def _add_node(self, node, **kwargs):
""" Add a node.
By default, nodes are initialized with ``vop=``:math:`I`, i.e. they are in the :math:`|+\\rangle` state.
"""
if node in self.node:
@@ -425,7 +425,8 @@ class GraphState(object):
""" Represent as a string for quick debugging """
s = ""
for key in sorted(self.node.keys()):
s += "{}: {}\t".format(key, clifford.get_name(self.node[key]["vop"]))
s += "{}: {}\t".format(key,
clifford.get_name(self.node[key]["vop"]))
if self.adj[key]:
s += str(tuple(self.adj[key].keys())).replace(" ", "")
else:


Loading…
取消
儲存