Fix module importing

This commit is contained in:
2026-03-28 18:23:50 +01:00
parent 1171fe28e7
commit 7e02e8ec6d
2 changed files with 4 additions and 3 deletions

View File

@@ -64,7 +64,6 @@ def generate_company(name: str, num_employees: int) -> Company:
def main():
my_company = generate_company("TechCorp", 5)
print("All employees:")
for emp in my_company.employees:
print(emp)