Skip to content
This repository was archived by the owner on Oct 20, 2023. It is now read-only.

Commit 65b9f0c

Browse files
committed
fix typo + change default landing file
1 parent 1f1a6ee commit 65b9f0c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# black
22
repos:
33
- repo: https://github.com/ambv/black
4-
rev: stable
4+
rev: 23.10.0
55
hooks:
66
- id: black
77
args: # arguments to configure black

sites/interia.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ def __account_created(self):
142142
write_if_complete(
143143
email=self.username,
144144
password=self.password,
145-
domain="interia",
146-
country="pl",
145+
domain="tutanota",
146+
country="com",
147147
)
148148
elif s == "n":
149149
self.failed_inputs += 1

utils/helper_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def write_if_complete(
5757
:rtpye: [None]
5858
"""
5959
user_path = os.getcwd() if user_path is None else USER_PATH
60-
with open(f"{user_path}/accounts.txt", "a+") as f:
60+
with open(f"{user_path}/accounts_personal.txt", "a+") as f:
6161
f.write(f"\n{email}@{domain}.{country}:{password}")
6262

6363

0 commit comments

Comments
 (0)