From d4e9f70a514ae83c90aee9fa466231ccefd70b76 Mon Sep 17 00:00:00 2001 From: cclauss Date: Sun, 10 Jun 2018 10:29:54 +0200 Subject: [PATCH] Incorporate PR #162 #162 Temporarily suppress flake8 testing of social_graph_snippets.py --- solutions/system_design/social_graph/social_graph_snippets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solutions/system_design/social_graph/social_graph_snippets.py b/solutions/system_design/social_graph/social_graph_snippets.py index 32941111..af3b2e0c 100644 --- a/solutions/system_design/social_graph/social_graph_snippets.py +++ b/solutions/system_design/social_graph/social_graph_snippets.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# flake8: noqa # Until issue #148 is resolved + class Graph(object): def bfs(self, source, dest):