mirror of
https://github.com/aljazceru/plugins.git
synced 2025-12-24 00:24:19 +01:00
commando: minor cleanups to keep flake8/mypy happy.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -18,14 +18,14 @@ type:594D - last reply
|
||||
Each one is an 8 byte id (to link replies to command), followed by JSON.
|
||||
|
||||
"""
|
||||
from pyln.client import Plugin, RpcError
|
||||
from pyln.client import Plugin, RpcError # type: ignore
|
||||
import json
|
||||
import textwrap
|
||||
import time
|
||||
import random
|
||||
import secrets
|
||||
import string
|
||||
import runes
|
||||
import runes # type: ignore
|
||||
from typing import Dict, Tuple, Optional
|
||||
|
||||
plugin = Plugin()
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import os
|
||||
from pyln.testing.fixtures import * # noqa: F401,F403
|
||||
from pyln.client import RpcError
|
||||
from pyln.testing.fixtures import * # type: ignore
|
||||
from pyln.client import RpcError # type: ignore
|
||||
import pytest
|
||||
import json
|
||||
import runes
|
||||
import runes # type: ignore
|
||||
import commando
|
||||
import time
|
||||
|
||||
|
||||
Reference in New Issue
Block a user