Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
cb: Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
Limess committed May 25, 2022
1 parent f7ecf62 commit 3b6b31e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion target_redshift/db_sync.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@

import sys
if sys.version_info.major == 3 and sys.version_info.minor >= 10:
#pylint: disable = no-name-in-module
from collections.abc import MutableMapping
else:
#pylint: disable = no-name-in-module
from collections import MutableMapping

import itertools
import json
import os
import re
import sys
import time

import boto3
Expand Down

0 comments on commit 3b6b31e

Please sign in to comment.