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

Commit

Permalink
fix typo + change default landing file
Browse files Browse the repository at this point in the history
  • Loading branch information
KonScanner committed Oct 20, 2023
1 parent 1f1a6ee commit 65b9f0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# black
repos:
- repo: https://github.com/ambv/black
rev: stable
rev: 23.10.0
hooks:
- id: black
args: # arguments to configure black
Expand Down
4 changes: 2 additions & 2 deletions sites/interia.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ def __account_created(self):
write_if_complete(
email=self.username,
password=self.password,
domain="interia",
country="pl",
domain="tutanota",
country="com",
)
elif s == "n":
self.failed_inputs += 1
Expand Down
2 changes: 1 addition & 1 deletion utils/helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def write_if_complete(
:rtpye: [None]
"""
user_path = os.getcwd() if user_path is None else USER_PATH
with open(f"{user_path}/accounts.txt", "a+") as f:
with open(f"{user_path}/accounts_personal.txt", "a+") as f:
f.write(f"\n{email}@{domain}.{country}:{password}")


Expand Down

0 comments on commit 65b9f0c

Please sign in to comment.