Python Forum
IndentationError: unexpected indent (Python)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IndentationError: unexpected indent (Python)
#9
(Aug-11-2017, 02:32 PM)snippsat Wrote:
(Aug-11-2017, 02:13 PM)segs Wrote: I am currently running this script from this online tool http://pep8online.com/ which seems to come with the errors and the lines.
I was wondering how you did that mess in first post.
pep8online is not for running code,it's getting advice for better code quality. 

You can not run that script online,
it has a lot of dependencies and has MySQL connection to locals files.
# Get MySQL connection parameters from zabbix conf file
with open(self.zabbix_conf) as f:
    my = dict( ln.lower()[2:].split('=') for ln in
    f.read().split('\n') if ln.startswith('DB') )
    self.db = MySQLdb.connect(my['host'], my['user'], my['password'], my['name'])
    self.mycsr = self.db.cursor()
There is repl.it that can run Python code online.
Will of course not work with tihs script as mention

Ah Thank you, when i run it there i get ^
SyntaxError: invalid syntax error
Reply


Messages In This Thread
RE: IndentationError: unexpected indent (Python) - by segs - Aug-11-2017, 03:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Unexpected termination of program when using JDBC drivers in python with jaydebeapi skarface19 2 342 Feb-17-2024, 12:01 PM
Last Post: skarface19
  Unexpected Output - Python Dataframes: Filtering based on Overlapping Dates Xensor 5 722 Nov-15-2023, 06:54 PM
Last Post: deanhystad
  getting unexpected indent errors trying to move cells up jensengt 4 885 Jun-28-2023, 12:05 PM
Last Post: deanhystad
  xml indent SubElements (wrapping) with multiple strings ctrldan 2 1,492 Jun-09-2023, 08:42 PM
Last Post: ctrldan
  IndentationError: unexpected indent dee 3 2,330 May-02-2022, 02:15 AM
Last Post: dee
  Avoid multiple repeat in indent Frankduc 8 2,908 Jan-18-2022, 05:46 PM
Last Post: Frankduc
  error "IndentationError: expected an indented block" axa 4 2,934 Sep-08-2020, 02:09 PM
Last Post: ibreeden
  IndentationError: unexpected indent jk91 1 2,394 Feb-27-2020, 08:56 PM
Last Post: buran
  could not fix unexpected indent Bayan 1 3,207 Nov-08-2019, 01:45 PM
Last Post: ichabod801
  IndentationError jagannath 1 2,478 Nov-04-2019, 07:41 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020