aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/__init__.py
diff options
context:
space:
mode:
authorzsloan2021-04-29 16:43:44 -0500
committerGitHub2021-04-29 16:43:44 -0500
commit72248f8474400a4f27717bda9309e95d1b1bae57 (patch)
tree44998fd1b561e1f4fde3edbc7bc5d375b003b91f /wqflask/utility/__init__.py
parent02184d2e867e7d14a825c739d55eb00c9aa142b7 (diff)
parent4c8c5390bdba594c217d7ca0114a80a6b3634e24 (diff)
downloadgenenetwork2-72248f8474400a4f27717bda9309e95d1b1bae57.tar.gz
Merge branch 'testing' into bug/network_graph_fixes
Diffstat (limited to 'wqflask/utility/__init__.py')
-rw-r--r--wqflask/utility/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/utility/__init__.py b/wqflask/utility/__init__.py
index 204ff59a..df926884 100644
--- a/wqflask/utility/__init__.py
+++ b/wqflask/utility/__init__.py
@@ -2,7 +2,7 @@ from pprint import pformat as pf
# Todo: Move these out of __init__
-class Bunch(object):
+class Bunch:
"""Like a dictionary but using object notation"""
def __init__(self, **kw):
self.__dict__ = kw
@@ -11,7 +11,7 @@ class Bunch(object):
return pf(self.__dict__)
-class Struct(object):
+class Struct:
'''The recursive class for building and representing objects with.
From http://stackoverflow.com/a/6573827/1175849