diff --git a/exts/base.py b/exts/base.py index b629bba..51ba2f7 100644 --- a/exts/base.py +++ b/exts/base.py @@ -141,8 +141,7 @@ class BaseCog(commands.Cog): @commands.command(name="echo", aliases=["e"], hidden=True) @commands.check(cmn.check_if_owner) async def _echo(self, ctx: commands.Context, channel: commands.TextChannelConverter, *, msg: str): - """Send a message in a channel as qrm. Only works within a server or DM to server, - not between servers.""" + """Send a message in a channel as qrm. Only works within a server or DM to server, not between servers.""" await channel.send(msg) diff --git a/exts/lookup.py b/exts/lookup.py index 6e88f71..fbeef80 100644 --- a/exts/lookup.py +++ b/exts/lookup.py @@ -48,14 +48,10 @@ class LookupCog(commands.Cog): while query: if query in self.cty.keys(): data = self.cty[query] - embed.add_field(name="Entity", - value=data['entity'])\ - .add_field(name="CQ Zone", - value=data['cq'])\ - .add_field(name="ITU Zone", - value=data['itu'])\ - .add_field(name="Continent", - value=data['continent'])\ + embed.add_field(name="Entity", value=data['entity'])\ + .add_field(name="CQ Zone", value=data['cq'])\ + .add_field(name="ITU Zone", value=data['itu'])\ + .add_field(name="Continent", value=data['continent'])\ .add_field(name="Time Zone", value=f'+{data["tz"]}' if data['tz'] > 0 else str(data['tz'])) embed.title += query diff --git a/exts/qrz.py b/exts/qrz.py index 27831a1..825e60e 100644 --- a/exts/qrz.py +++ b/exts/qrz.py @@ -42,8 +42,7 @@ class QRZCog(commands.Cog): raise ConnectionError(f'Unable to connect to QRZ (HTTP Error {resp.status})') resp_xml = etree.parse(BytesIO(await resp.read())).getroot() - resp_xml_session = resp_xml.xpath('/x:QRZDatabase/x:Session', - namespaces={'x': 'http://xmldata.qrz.com'}) + resp_xml_session = resp_xml.xpath('/x:QRZDatabase/x:Session', namespaces={'x': 'http://xmldata.qrz.com'}) resp_session = {el.tag.split('}')[1]: el.text for el in resp_xml_session[0].getiterator()} if 'Error' in resp_session: if 'Session Timeout' in resp_session['Error']: @@ -59,8 +58,7 @@ class QRZCog(commands.Cog): return raise ValueError(resp_session['Error']) - resp_xml_data = resp_xml.xpath('/x:QRZDatabase/x:Callsign', - namespaces={'x': 'http://xmldata.qrz.com'}) + resp_xml_data = resp_xml.xpath('/x:QRZDatabase/x:Callsign', namespaces={'x': 'http://xmldata.qrz.com'}) resp_data = {el.tag.split('}')[1]: el.text for el in resp_xml_data[0].getiterator()} embed = cmn.embed_factory(ctx) @@ -101,8 +99,7 @@ async def qrz_login(user: str, passwd: str, session: aiohttp.ClientSession): raise ConnectionError(f'Unable to connect to QRZ (HTTP Error {resp.status})') resp_xml = etree.parse(BytesIO(await resp.read())).getroot() - resp_xml_session = resp_xml.xpath('/x:QRZDatabase/x:Session', - namespaces={'x': 'http://xmldata.qrz.com'}) + resp_xml_session = resp_xml.xpath('/x:QRZDatabase/x:Session', namespaces={'x': 'http://xmldata.qrz.com'}) resp_session = {el.tag.split('}')[1]: el.text for el in resp_xml_session[0].getiterator()} if 'Error' in resp_session: raise ConnectionError(resp_session['Error']) @@ -118,8 +115,7 @@ async def qrz_test_session(key: str, session: aiohttp.ClientSession): raise ConnectionError(f'Unable to connect to QRZ (HTTP Error {resp.status})') resp_xml = etree.parse(BytesIO(await resp.read())).getroot() - resp_xml_session = resp_xml.xpath('/x:QRZDatabase/x:Session', - namespaces={'x': 'http://xmldata.qrz.com'}) + resp_xml_session = resp_xml.xpath('/x:QRZDatabase/x:Session', namespaces={'x': 'http://xmldata.qrz.com'}) resp_session = {el.tag.split('}')[1]: el.text for el in resp_xml_session[0].getiterator()} if 'Error' in resp_session: raise ConnectionError(resp_session['Error']) @@ -174,8 +170,7 @@ def qrz_process_info(data: dict): ('CQ Zone', data.get('cqzone', None)), ('ITU Zone', data.get('ituzone', None)), ('IOTA Designator', data.get('iota', None)), - ('Born', data.get('born', None)), - ]) + ('Born', data.get('born', None))]) def setup(bot): diff --git a/exts/study.py b/exts/study.py index 6c98fb4..fb8298e 100644 --- a/exts/study.py +++ b/exts/study.py @@ -78,8 +78,7 @@ class StudyCog(commands.Cog): embed.add_field(name='Answers:', value='**A:** ' + question['answers']['A'] + '\n**B:** ' + question['answers']['B'] + '\n**C:** ' + question['answers']['C'] + - '\n**D:** ' + question['answers']['D'], - inline=False) + '\n**D:** ' + question['answers']['D'], inline=False) embed.add_field(name='Answer:', value='Type _?rqa_ for answer', inline=False) if 'image' in question: image_url = f'https://hamstudy.org/_1330011/images/{selected_pool.split("_",1)[1]}/{question["image"]}'