Skip to content

Commit

Permalink
Merge pull request #6 from LunarsDev/deepsource-fix-d1e5ba8e
Browse files Browse the repository at this point in the history
Add newline at end of file
  • Loading branch information
WinterFe authored Sep 13, 2022
2 parents 46d9ba6 + d543dcd commit 033b9fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ async def main():
data = await nsfw_jpg.to_dict()
print("Image URL is", data["url"])

asyncio.run(main())
asyncio.run(main())
2 changes: 1 addition & 1 deletion lunarapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.1.0"

from .api import *
from .api import *
2 changes: 1 addition & 1 deletion lunarapi/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ def nsfw(__name: __valid):
return Endpoint(f"nsfw/{__name}", model=models.JSON, fn=lambda: None)

def sfw(__name: __sfw_valid):
return Endpoint(f"sfw/{__name}", model=models.JSON, fn=lambda: None)
return Endpoint(f"sfw/{__name}", model=models.JSON, fn=lambda: None)

0 comments on commit 033b9fd

Please sign in to comment.