master > master: code py - refactoring

This commit is contained in:
RD
2022-06-10 12:28:00 +02:00
parent 0116e2fbfb
commit b4a5ee213c
25 changed files with 126 additions and 40 deletions

View File

@@ -11,7 +11,7 @@ from pytest import mark;
from pytest import fixture;
from unittest import TestCase;
from src.graphs.graph import *;
from src.models.graphs import *;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# FIXTURES

View File

@@ -13,8 +13,8 @@ from unittest import TestCase;
from unittest.mock import patch;
from src.thirdparty.types import *;
from src.graphs.graph import *;
from src.graphs.tarjan import *;
from src.models.graphs import *;
from src.algorithms.tarjan import *;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# FIXTURES

View File

@@ -10,7 +10,7 @@ import pytest;
from pytest import mark;
from unittest import TestCase;
from src.stacks.stack import Stack;
from src.models.stacks import Stack;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Fixtures