(self)
| 592 | |
| 593 | |
| 594 | def setup_borders(self): |
| 595 | temp_borders = self.paths.generation_borders_path |
| 596 | borders = PathProvider.borders_path() |
| 597 | for x in self.countries: |
| 598 | if x in WORLDS_NAMES: |
| 599 | continue |
| 600 | |
| 601 | poly = f"{x}.poly" |
| 602 | make_symlink(os.path.join(borders, poly), os.path.join(temp_borders, poly)) |
| 603 | make_symlink(temp_borders, os.path.join(self.paths.draft_path, "borders")) |
| 604 | |
| 605 | def setup_osm2ft(self): |
| 606 | for x in os.listdir(self.paths.osm2ft_path): |
no test coverage detected