Skip to content

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidetacchini committed Sep 8, 2023
2 parents 3b57113 + 41afe76 commit 8dc42bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from aiohttp import ClientSession
from discord.ext import commands

import config # pyright: reportMissingImports=false
import config # pyright: ignore[reportMissingImports]

from utils import emojis
from classes.ui import PromptView
Expand Down
2 changes: 1 addition & 1 deletion classes/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import aiohttp

import config # pyright: reportMissingImports=false
import config # pyright: ignore[reportMissingImports]

from .exceptions import (
NotFound,
Expand Down
2 changes: 1 addition & 1 deletion utils/scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from bs4 import BeautifulSoup

import config # pyright: reportMissingImports=false
import config # pyright: ignore[reportMissingImports]


async def fetch(url: str) -> bytes:
Expand Down

0 comments on commit 8dc42bc

Please sign in to comment.