(self)
| 243 | self.slow = slow |
| 244 | |
| 245 | def run(self): |
| 246 | self.include_at_top() |
| 247 | if self.slow: |
| 248 | with open("src/Minecraft.Client/net/minecraft/client/ui/StringIDs.h", "r") as f: |
| 249 | self.string_ids(f.read()) |
| 250 | return self.c |
| 251 | |
| 252 | # checks if the include for the current file is at the top of the file with a newline after |
| 253 | def include_at_top(self): |
no test coverage detected