Skip to content

Commit

Permalink
Fixed import of private data
Browse files Browse the repository at this point in the history
  • Loading branch information
frzb committed Jan 16, 2025
1 parent 09d857e commit 00a6ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def load_data(self, file, include_private_data=False):
print("Including private data")
with open(self.json_path_private) as json_file:
self.resume_data_private = json.load(json_file)
merged = self.merge_dicts(file, self.resume_data_private)
merged = self.merge_dicts(resume_data, self.resume_data_private)
resume_data = merged
print("JSON resume data")
print(resume_data)
Expand Down

0 comments on commit 00a6ef9

Please sign in to comment.