Advertisement
pacho_the_python

Untitled

Jul 11th, 2022
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. from project.building import Building
  2.  
  3.  
  4. class CountryBuilding(Building):
  5.     def __init__(self, building_type, floors):
  6.         super().__init__(building_type, floors)
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement