Modify formatting in response to black update

This commit is contained in:
Alan Rominger
2021-04-26 10:51:27 -04:00
parent 0bdd873bd3
commit 67f7998ab9
10 changed files with 18 additions and 18 deletions

View File

@@ -2,7 +2,7 @@ from collections import deque
class SimpleDAG(object):
''' A simple implementation of a directed acyclic graph '''
'''A simple implementation of a directed acyclic graph'''
def __init__(self):
self.nodes = []