Skip to content

Commit

Permalink
ifm update
Browse files Browse the repository at this point in the history
  • Loading branch information
adasium committed Feb 28, 2024
1 parent 428ff3e commit 6857e9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spacemacs/snippets/python-mode/ifmain
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
# name: ifmain
# key: ifm
# --
from __future__ import annotations

from typing import Optional
from typing import Sequence


def main(argv: Optional[Sequence[str]] = None) -> int:
def main(argv: Sequence[str] | None = None) -> int:
${0:return 0}


Expand Down

0 comments on commit 6857e9f

Please sign in to comment.