Skip to content

Commit

Permalink
fix: remove unused pygraphviz import
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkolenz committed Jan 11, 2023
1 parent 3b53f5a commit a0e6726
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions arguebuf/models/edge.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

import logging
import typing as t
from enum import Enum

import networkx as nx
import pendulum
import pygraphviz as gv
from arg_services.graph.v1 import graph_pb2

from arguebuf.models import Userdata
Expand Down
1 change: 0 additions & 1 deletion arguebuf/models/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

import networkx as nx
import pendulum
import pygraphviz as gv
from arg_services.graph.v1 import graph_pb2
from google.protobuf.json_format import MessageToDict, ParseDict
from lxml import html
Expand Down
4 changes: 1 addition & 3 deletions arguebuf/models/node.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
from __future__ import absolute_import, annotations

import textwrap
import typing as t
import xml.etree.ElementTree as et
from abc import ABC, abstractmethod
from dataclasses import dataclass, field
from dataclasses import dataclass
from enum import Enum

import networkx as nx
import pendulum
import pygraphviz as gv
from arg_services.graph.v1 import graph_pb2

from arguebuf.models import Userdata
Expand Down

0 comments on commit a0e6726

Please sign in to comment.