Skip to content

Commit 7244902

Browse files
committed
cleaned code of spacing errors
1 parent f9641dc commit 7244902

31 files changed

+63
-28
lines changed

.devcontainer/devcontainer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/python
3+
{
4+
"name": "Python 3",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye"
7+
8+
// Features to add to the dev container. More info: https://containers.dev/features.
9+
// "features": {},
10+
11+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
12+
// "forwardPorts": [],
13+
14+
// Use 'postCreateCommand' to run commands after the container is created.
15+
// "postCreateCommand": "pip3 install --user -r requirements.txt",
16+
17+
// Configure tool-specific properties.
18+
// "customizations": {},
19+
20+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
21+
// "remoteUser": "root"
22+
}

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for more information:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
# https://containers.dev/guide/dependabot
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "devcontainers"
10+
directory: "/"
11+
schedule:
12+
interval: weekly

mypy/test/testcheck.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
except ImportError:
3030
lxml = None
3131

32+
3233
import pytest
3334

3435
# List of files that contain test case descriptions.

mypy/typeshed/stdlib/_frozen_importlib.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import importlib.abc
22
import importlib.machinery
33
import sys
4-
import types
4+
import types
55
from _typeshed.importlib import LoaderProtocol
66
from collections.abc import Mapping, Sequence
77
from types import ModuleType

mypy/typeshed/stdlib/_frozen_importlib_external.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import _io
33
import importlib.abc
44
import importlib.machinery
55
import sys
6-
import types
6+
import types
77
from _typeshed import ReadableBuffer, StrOrBytesPath, StrPath
88
from _typeshed.importlib import LoaderProtocol
99
from collections.abc import Callable, Iterable, Iterator, Mapping, MutableSequence, Sequence

mypy/typeshed/stdlib/_imp.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import sys
2-
import types
2+
import types
33
from _typeshed import ReadableBuffer
44
from importlib.machinery import ModuleSpec
55
from typing import Any

mypy/typeshed/stdlib/_interpreters.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import types
1+
import types
22
from collections.abc import Callable, Mapping
33
from typing import Final, Literal, SupportsIndex
44
from typing_extensions import TypeAlias

mypy/typeshed/stdlib/asyncio/unix_events.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import sys
2-
import types
2+
import types
33
from _typeshed import StrPath
44
from abc import ABCMeta, abstractmethod
55
from collections.abc import Callable

mypy/typeshed/stdlib/builtins.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import _ast
22
import _sitebuiltins
33
import _typeshed
44
import sys
5-
import types
5+
import types
66
from _collections_abc import dict_items, dict_keys, dict_values
77
from _typeshed import (
88
AnyStr_co,

mypy/typeshed/stdlib/codecs.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import types
1+
import types
22
from _codecs import *
33
from _typeshed import ReadableBuffer
44
from abc import abstractmethod

0 commit comments

Comments
 (0)