Skip to content

Commit

Permalink
Fix: Missed from __future__ import annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Jun 7, 2024
1 parent cfbe298 commit 0352fbc
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/aleph_client/commands/about.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import typer
from pkg_resources import get_distribution

Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/account.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import asyncio
import base64
import json
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/aggregate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import json
from pathlib import Path
from typing import Optional
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/domain.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from pathlib import Path
from time import sleep
from typing import Dict, Optional, cast
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/files.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import json as json_lib
import logging
from datetime import datetime
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/instance.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import asyncio
import logging
from pathlib import Path
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/message.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import asyncio
import json
import os.path
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/node.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import datetime
import json as json_lib
import logging
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/program.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import json
import logging
from base64 import b16decode, b32encode
Expand Down
2 changes: 2 additions & 0 deletions src/aleph_client/commands/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import logging
import os
import sys
Expand Down

0 comments on commit 0352fbc

Please sign in to comment.