Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
phuoc.tran committed Nov 24, 2024
1 parent 415c2b1 commit 6f668de
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .isort.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[settings]
line_length = 79
line_length = 120
multi_line_output = 3
include_trailing_comma = True
known_third_party = graphviz,jinja2
known_third_party = graphviz,jinja2
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ repos:
rev: v2.3.1
hooks:
- id: autopep8
args: [--in-place, --aggressive, --aggressive, --max-line-length=79]
args: [--in-place, --aggressive, --aggressive, --max-line-length=120]
9 changes: 1 addition & 8 deletions tests/test_c4.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
import unittest

from diagrams import Diagram, setcluster, setdiagram
from diagrams.c4 import (
Container,
Database,
Person,
Relationship,
System,
SystemBoundary,
)
from diagrams.c4 import Container, Database, Person, Relationship, System, SystemBoundary


class C4Test(unittest.TestCase):
Expand Down
11 changes: 1 addition & 10 deletions tests/test_diagram.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,7 @@
import shutil
import unittest

from diagrams import (
Cluster,
Diagram,
Edge,
Node,
getcluster,
getdiagram,
setcluster,
setdiagram,
)
from diagrams import Cluster, Diagram, Edge, Node, getcluster, getdiagram, setcluster, setdiagram


class DiagramTest(unittest.TestCase):
Expand Down

0 comments on commit 6f668de

Please sign in to comment.