(url, driver, query_str)
| 84 | |
| 85 | @generate_driver_url.for_db("sqlite") |
| 86 | def generate_driver_url(url, driver, query_str): |
| 87 | url = _format_url(url, driver, None) |
| 88 | |
| 89 | try: |
| 90 | url.get_dialect() |
| 91 | except exc.NoSuchModuleError: |
| 92 | return None |
| 93 | else: |
| 94 | return url |
| 95 | |
| 96 | |
| 97 | @follower_url_from_main.for_db("sqlite") |
nothing calls this directly
no test coverage detected