Skip to content

Commit f4cb96f

Browse files
author
Victoria Luquet
committed
updated project name and structure
1 parent 7707654 commit f4cb96f

10 files changed

Lines changed: 6 additions & 5 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.env
22
__pycache__/
3-
TODO
3+
TODO
4+
dist
File renamed without changes.
File renamed without changes.

tests/multiple_environs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from env_parser import config
1+
from envify import config
22
from .results.parsing_test import results
3-
from env_parser.errors import InvalidEnvironmentError, EnvNotFoundError, ActiveEnvironmentError, DuplicateEnvVariableError
3+
from envify.errors import InvalidEnvironmentError, EnvNotFoundError, ActiveEnvironmentError, DuplicateEnvVariableError
44
import pytest
55
import os
66

tests/parsing_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from env_parser import config
1+
from envify import config
22
from .results.parsing_test import results
3-
from env_parser.errors import InvalidEnvValueError, DuplicateEnvVariableError, EnvNotFoundError
3+
from envify.errors import InvalidEnvValueError, DuplicateEnvVariableError, EnvNotFoundError
44
import pytest
55
import os
66

0 commit comments

Comments
 (0)