(self)
| 29 | ranking = Int(default_value=1).tag(config=True) |
| 30 | |
| 31 | def __str__(self): |
| 32 | return f"The school {self.name} has a rank of {self.ranking}." |
| 33 | |
| 34 | |
| 35 | class MyApp(Application): |
nothing calls this directly
no outgoing calls
no test coverage detected