Fix CI issues: add workflow file and fix lint errors
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
"""Code generators for different programming languages."""
|
{"""Code generators for different programming languages."""
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
from typing import Dict, Callable
|
from typing import Dict, Callable
|
||||||
|
|
||||||
from curlconverter.parser import ParsedCurl
|
from curlconverter.parser import ParsedCurl
|
||||||
|
|
||||||
|
|
||||||
@@ -57,8 +58,8 @@ def get_language_display_name(lang: str) -> str:
|
|||||||
return names.get(lang.lower(), lang.capitalize())
|
return names.get(lang.lower(), lang.capitalize())
|
||||||
|
|
||||||
|
|
||||||
from curlconverter.generators import python
|
from curlconverter.generators import python # noqa: E402, F401
|
||||||
from curlconverter.generators import javascript
|
from curlconverter.generators import javascript # noqa: E402, F401
|
||||||
from curlconverter.generators import go
|
from curlconverter.generators import go # noqa: E402, F401
|
||||||
from curlconverter.generators import ruby
|
from curlconverter.generators import ruby # noqa: E402, F401
|
||||||
from curlconverter.generators import php
|
from curlconverter.generators import php # noqa: E402, F401
|
||||||
Reference in New Issue
Block a user