Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
refactor: remove src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsantana06 committed Dec 24, 2023
1 parent 2c872b9 commit b1e3028
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.venv/
__pycache__/
__secret__.py
setup.py
dist/
*.egg-info/
*.json
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pytest import fixture
import json

from src.linkeds import BoundedList, DynamicList
from linkeds import BoundedList, DynamicList


GAMES = (
Expand Down
2 changes: 1 addition & 1 deletion tests/test_node.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pytest import fixture
from typing import List

from src.linkeds import DoubleNode, SingleNode
from linkeds import DoubleNode, SingleNode


NAMES = (
Expand Down
2 changes: 1 addition & 1 deletion tests/test_queue.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pytest import fixture
from src.linkeds import BoundedQueue, DynamicQueue
from linkeds import BoundedQueue, DynamicQueue


COMPONENTS = (
Expand Down
2 changes: 1 addition & 1 deletion tests/test_stack.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pytest import fixture
from src.linkeds import BoundedStack, DynamicStack
from linkeds import BoundedStack, DynamicStack


PROCESSES = (
Expand Down

0 comments on commit b1e3028

Please sign in to comment.