Skip to content

Commit 41254ce

Browse files
committed
refactor: Move files into folder "pw"
1 parent 5ff8e19 commit 41254ce

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

src/pw/pw_config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import os
2+
from configparser import ConfigParser
3+
4+
5+
# Such Secret
6+
# Very Data
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import datetime
33
from typing import List
44

5-
from pw_utils import get_pws_from_json_file
5+
from pw.pw_utils import get_pws_from_json_file
66

77

88
class SecretsDataJSONClient:
File renamed without changes.

src/pw_command.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
import pyperclip
66

7-
from pw_config import CREDS_DIR, CREDS_FILE_PATH, ENCRYPTION_KEY
8-
from pw_json_client import SecretsDataJSONClient
9-
from pw_encryption import SynchronousEncryption
10-
from pw_utils import generate_random_password
11-
from pw_utils import HelpTexts as h
7+
from pw.pw_config import CREDS_DIR, CREDS_FILE_PATH, ENCRYPTION_KEY
8+
from pw.pw_json_client import SecretsDataJSONClient
9+
from crypto.pw_encryption import SynchronousEncryption
10+
from pw.pw_utils import generate_random_password
11+
from pw.pw_utils import HelpTexts as h
1212

1313

1414
def main():

src/pw_config.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)