(self, home_coords)
| 155 | |
| 156 | class Templates: |
| 157 | def __init__(self, home_coords): |
| 158 | self.home_coords = home_coords |
| 159 | self.options = self.get_options() |
| 160 | self.environment = Environment(loader=FileSystemLoader(local_path + '/html')) |
| 161 | |
| 162 | def get_options(self): |
| 163 | return {'width': 670, |
nothing calls this directly
no test coverage detected